wpsc_track_move_from_boost()
Tell Jetpack when the cache is moved from Jetpack Boost to WP Super Cache.
Hooks from the function
Return
null
. Nothing (null).
Usage
wpsc_track_move_from_boost();
wpsc_track_move_from_boost() wpsc track move from boost code WPSCache 1.12.4
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' ); }