返回介绍

menu_page_url()

发布于 2017-09-11 01:55:28 字数 1803 浏览 978 评论 0 收藏 0

menu_page_url( string $menu_slug,  bool $echo = true )

Get the url to access a particular menu page based on the slug it was registered with.


description

If the slug hasn’t been registered properly no url will be returned


参数

$menu_slug

(string) (Required) The slug name to refer to this menu by (should be unique for this menu)

$echo

(bool) (Optional) Whether or not to echo the url - default is true

Default value: true


返回值

(string) the url


源代码

File: wp-admin/includes/plugin.php

function menu_page_url($menu_slug, $echo = true) {
	global $_parent_pages;

	if ( isset( $_parent_pages[$menu_slug] ) ) {
		$parent_slug = $_parent_pages[$menu_slug];
		if ( $parent_slug && ! isset( $_parent_pages[$parent_slug] ) ) {
			$url = admin_url( add_query_arg( 'page', $menu_slug, $parent_slug ) );
		} else {
			$url = admin_url( 'admin.php?page=' . $menu_slug );
		}
	} else {
		$url = '';
	}

	$url = esc_url($url);

	if ( $echo )
		echo $url;

	return $url;
}

更新日志

Versiondescription
3.0.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: esc_url()
  • wp-includes/functions.php: add_query_arg()
  • wp-includes/link-template.php: admin_url()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文