wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



is_plugin_inactive › WordPress Function

Seit3.1.0
Veraltetn/v
is_plugin_inactive ( $plugin )
Parameter:
  • (string) $plugin Path to the plugin file relative to the plugins directory.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) True if inactive. False if active.
Definiert in:
Codex:

Determines whether the plugin is inactive.

Reverse of is_plugin_active(). Used as a callback. For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Quellcode

function is_plugin_inactive( $plugin ) {
	return ! is_plugin_active( $plugin );
}