Skip to content

Instantly share code, notes, and snippets.

@miya0001
Last active December 28, 2015 09:39
Show Gist options
  • Select an option

  • Save miya0001/7480577 to your computer and use it in GitHub Desktop.

Select an option

Save miya0001/7480577 to your computer and use it in GitHub Desktop.
プラグインが有効かどうかを調べる
<?php
function is_active($plugin)
{
if (function_exists('is_plugin_active')) {
return is_plugin_active($plugin);
} else {
return in_array(
$plugin,
get_option('active_plugins')
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment