is_plugin_inactive()
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 Conditional Tags article in the Theme Developer Handbook.
Хуков нет.
Возвращает
true|false
. True if inactive. False if active.
Использование
is_plugin_inactive( $plugin );
- $plugin(строка) (обязательный)
- Path to the plugin file relative to the plugins directory.
Заметки
- Смотрите: is_plugin_active()
Список изменений
С версии 3.1.0 | Введена. |
Код is_plugin_inactive() is plugin inactive WP 6.7.1
function is_plugin_inactive( $plugin ) { return ! is_plugin_active( $plugin ); }