get_plugin_page_hookname

函数
get_plugin_page_hookname ( $plugin_page, $parent_page )
参数
  • (string) $plugin_page The slug name of the plugin page.
    Required:
  • (string) $parent_page The slug name for the parent menu (or the file name of a standard WordPress admin page).
    Required:
返回值
  • (string) Hook name for the plugin page.
定义位置
相关方法
get_plugin_page_hookget_plugin_dataget_plugin_updatesplugin_basenameis_plugin_page
引入
1.5.0
弃用
-

get_plugin_page_hookname函数用于检索插件管理页面的挂钩名称。它需要三个参数,第一个是插件文件,第二个是页面标识符,第三个是访问页面所需的功能。

获取一个插件的管理页面的钩子名称。

function get_plugin_page_hookname( $plugin_page, $parent_page ) {
	global $admin_page_hooks;

	$parent = get_admin_page_parent( $parent_page );

	$page_type = 'admin';
	if ( empty( $parent_page ) || 'admin.php' === $parent_page || isset( $admin_page_hooks[ $plugin_page ] ) ) {
		if ( isset( $admin_page_hooks[ $plugin_page ] ) ) {
			$page_type = 'toplevel';
		} elseif ( isset( $admin_page_hooks[ $parent ] ) ) {
			$page_type = $admin_page_hooks[ $parent ];
		}
	} elseif ( isset( $admin_page_hooks[ $parent ] ) ) {
		$page_type = $admin_page_hooks[ $parent ];
	}

	$plugin_name = preg_replace( '!.php!', '', $plugin_page );

	return $page_type . '_page_' . $plugin_name;
}

常见问题

FAQs
查看更多 >