get_plugin_page_hook()
Gets the hook attached to the administrative page of a plugin.
Хуков нет.
Возвращает
Строку|null. Hook attached to the plugin page, null otherwise.
Использование
get_plugin_page_hook( $plugin_page, $parent_page );
- $plugin_page(строка) (обязательный)
- The slug name of the plugin page.
- $parent_page(строка) (обязательный)
- The slug name for the parent menu (or the file name of a standard WordPress admin page).
Список изменений
| С версии 1.5.0 | Введена. |
Код get_plugin_page_hook() get plugin page hook WP 7.0.2
function get_plugin_page_hook( $plugin_page, $parent_page ) {
$hook = get_plugin_page_hookname( $plugin_page, $parent_page );
if ( has_action( $hook ) ) {
return $hook;
} else {
return null;
}
}