wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_plugin_page_hook › WordPress Function

Seit1.5.0
Veraltetn/v
get_plugin_page_hook ( $plugin_page, $parent_page )
Parameter: (2)
  • (string) $plugin_page The slug name of the plugin page.
    Erforderlich: Ja
  • (string) $parent_page The slug name for the parent menu (or the file name of a standard WordPress admin page).
    Erforderlich: Ja
Gibt zurück:
  • (string|null) Hook attached to the plugin page, null otherwise.
Definiert in:
Codex:

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



Quellcode

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