wpsc_is_boost_installed()
Check if Jetpack Boost has been installed.
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_is_boost_installed();
wpsc_is_boost_installed() wpsc is boost installed code WPSCache 3.1.1
function wpsc_is_boost_installed() {
$plugins = array_keys( get_plugins() );
foreach ( $plugins as $plugin ) {
if ( str_contains( $plugin, 'jetpack-boost/jetpack-boost.php' ) ) {
return true;
}
}
return false;
}