wpsc_track_move_from_boost()
Tell Jetpack when the cache is moved from Jetpack Boost to WP Super Cache.
Хуки из функции
Возвращает
null
. Ничего (null).
Использование
wpsc_track_move_from_boost();
Код wpsc_track_move_from_boost() wpsc track move from boost WPSCache 2.0.0
function wpsc_track_move_from_boost() { if ( ! get_transient( 'wpsc_boost_cache_notice_displayed' ) ) { return; } delete_transient( 'wpsc_boost_cache_notice_displayed' ); do_action( 'jb_cache_moved_to_wpsc' ); }