wpsc_is_boost_installed()
Check if Jetpack Boost has been installed.
No Hooks.
Return
null
. Nothing (null).
Usage
wpsc_is_boost_installed();
wpsc_is_boost_installed() wpsc is boost installed code WPSCache 1.12.4
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; }