Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save erikasarti/6c548ebac14e67f9c2a3 to your computer and use it in GitHub Desktop.
Save erikasarti/6c548ebac14e67f9c2a3 to your computer and use it in GitHub Desktop.
Checar se um plugin está instalado no WordPress, dentro do tema
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( is_plugin_active( 'pasta-do-plugin/arquivo-do-plugin.php' ) ) {
// Aqui vai o código do que você quer fazer
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment