Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Last active April 21, 2016 11:19
Show Gist options
  • Select an option

  • Save BinaryKitten/b8ffb08648612e4bd99842ff4e161654 to your computer and use it in GitHub Desktop.

Select an option

Save BinaryKitten/b8ffb08648612e4bd99842ff4e161654 to your computer and use it in GitHub Desktop.
<?php
add_action('init', 'my_theme_init');
function my_theme_init() {
if (!is_plugin_active()) {
return;
}
//do things here, plugin is active.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment