Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created May 14, 2012 18:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wpscholar/2695372 to your computer and use it in GitHub Desktop.
Save wpscholar/2695372 to your computer and use it in GitHub Desktop.
Test if a WordPress plugin is active
<?php
/**
* Test if a WordPress plugin is active
*/
if ( is_plugin_active('plugin-directory/plugin-file.php') ) {
// the plugin is active
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment