Use the WordPress Function (is_plugin_active) You can use the built in WordPress function is_plugin_active to do the check. Here is an example where I check if Akismet is activated: if ( is_plugin_active(‘akismet/akismet.php’) ) { The catch : you need to know the directory and file name of the plugin. The directory could differ if the plugin was Full Article…
Viewing 1 item