'return_false', 'rocket_display_varnish_options_tab' => 'return_false', 'rocket_cache_mandatory_cookies' => 'return_empty_array', 'after_rocket_clean_domain' => 'purge_site', 'wp_rocket_loaded' => 'remove_actions', ]; } /** * Purge SpinUpWP cache after clean domain. * * @since 3.6.2 */ public function purge_site() { if ( ! function_exists( 'spinupwp_purge_site' ) ) { return; } spinupwp_purge_site(); } /** * Remove rocket_clean_domain which prevents a double clear of the cache. * * @since 3.6.2 */ public function remove_actions() { remove_action( 'switch_theme', 'rocket_clean_domain' ); } }