is_plugin_paused()
Determines whether a plugin is technically active but was paused while loading.
For more information on this and similar theme functions, check out the Conditional Tags article in the Theme Developer Handbook.
Хуков нет.
Возвращает
true|false
. True, if in the list of paused plugins. False, if not in the list.
Использование
is_plugin_paused( $plugin );
- $plugin(строка) (обязательный)
- Path to the plugin file relative to the plugins directory.
Заметки
- Global. WP_Paused_Extensions_Storage. $_paused_plugins
Список изменений
С версии 5.2.0 | Введена. |
Код is_plugin_paused() is plugin paused WP 6.7.1
function is_plugin_paused( $plugin ) { if ( ! isset( $GLOBALS['_paused_plugins'] ) ) { return false; } if ( ! is_plugin_active( $plugin ) ) { return false; } list( $plugin ) = explode( '/', $plugin ); return array_key_exists( $plugin, $GLOBALS['_paused_plugins'] ); }