wpsc_notify_migration_to_boost()
Notify Jetpack Boost that Boost Cache will be used instead of WP Super Cache.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wpsc_notify_migration_to_boost( $source );
- $source(строка) (обязательный)
- The source of the migration: 'notice', 'banner', 'try_button'.
Код wpsc_notify_migration_to_boost() wpsc notify migration to boost WPSCache 2.0.0
function wpsc_notify_migration_to_boost( $source ) { if ( ! in_array( $source, array( 'notice', 'banner', 'try_button' ), true ) ) { return; } set_transient( 'jb_cache_moved_to_boost', $source, WEEK_IN_SECONDS ); }