get_plugin_page_hook( string $plugin_page, string $parent_page ): string|null

In this article

Gets the hook attached to the administrative page of a plugin.

Parameters

$plugin_pagestringrequired
The slug name of the plugin page.
$parent_pagestringrequired
The slug name for the parent menu (or the file name of a standard WordPress admin page).

Return

string|null Hook attached to the plugin page, null otherwise.

Source

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;
	}
}

Changelog

VersionDescription
1.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.