wpsc_is_boost_current()
Check if the Jetpack Boost that is installed is current.
Хуков нет.
Возвращает
true|false. True if Jetpack Boost is same as or newer than version 3.4.0
Использование
wpsc_is_boost_current();
Код wpsc_is_boost_current() wpsc is boost current WPSCache 3.1.1
function wpsc_is_boost_current() {
if ( defined( 'JETPACK_BOOST_VERSION' ) ) {
return version_compare( (string) JETPACK_BOOST_VERSION, MINIMUM_BOOST_VERSION, '>=' );
} else {
return true; // don't care if Boost is not installed
}
}