wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



is_plugin_active › WordPress Function

Da2.5.0
Deprecaton/a
is_plugin_active ( $plugin )
Parametri:
  • (string) $plugin Path to the plugin file relative to the plugins directory.
    Richiesto:
Ritorna:
  • (bool) True, if in the active plugins list. False, not in the list.
Definito a:
Codex:

Determines whether a plugin is active.

Only plugins installed in the plugins/ folder can be active. Plugins in the mu-plugins/ folder can't be "activated," so this function will return false for those plugins. For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Sorgenti

function is_plugin_active( $plugin ) {
	return in_array( $plugin, (array) get_option( 'active_plugins', array() ), true ) || is_plugin_active_for_network( $plugin );
}