wpsc_is_boost_installed()
Check if Jetpack Boost has been installed.
Хуков нет.
Возвращает
null
. Ничего.
Использование
wpsc_is_boost_installed();
Код wpsc_is_boost_installed() wpsc is boost installed WPSCache 1.9.2
function wpsc_is_boost_installed() { $plugins = array_keys( get_plugins() ); foreach ( $plugins as $plugin ) { if ( false !== strpos( $plugin, 'jetpack-boost.php' ) ) { return true; } } return false; }