wpsc_is_boost_current()WPSCache 1.0

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() WPSCache 3.0.0

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
	}
}