HTTP/2 301
server: nginx
date: Sun, 28 Dec 2025 10:18:31 GMT
content-type: text/html; charset=UTF-8
x-olaf: ⛄
vary: accept, content-type
x-redirect-by: WordPress
location: https://developer.wordpress.org/reference/functions/get_plugin_page_hook/
x-frame-options: SAMEORIGIN
alt-svc: h3=":443"; ma=86400
x-nc: MISS ord 2
HTTP/2 200
server: nginx
date: Sun, 28 Dec 2025 10:18:32 GMT
content-type: text/html; charset=UTF-8
vary: Accept-Encoding
x-olaf: ⛄
vary: accept, content-type
link:
; rel="https://api.w.org/"
link:
; rel="alternate"; title="JSON"; type="application/json"
link: ; rel=shortlink
x-frame-options: SAMEORIGIN
content-encoding: gzip
alt-svc: h3=":443"; ma=86400
x-nc: MISS ord 2
get_plugin_page_hook() – Function | Developer.WordPress.org
get_plugin_page_hook( string $plugin_page, string $parent_page ): string|null
Gets the hook attached to the administrative page of a plugin.
$plugin_pagestringrequiredThe slug name of the plugin page.
$parent_pagestringrequiredThe slug name for the parent menu (or the file name of a standard WordPress admin page).
string|null Hook attached to the plugin page, null otherwise.
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;
}
}
View all references View on Trac View on GitHub
| Version | Description |
|---|
| 1.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.