menu_page_url() – Get the URL to access a particular menu page based on the slug it was registered with.
You appear to be a bot. Output may be restricted
Description
Gets the URL to access a particular menu page based on the slug it was registered with.
If the slug hasn't been registered properly, no URL will be returned.
Usage
$string = menu_page_url( $menu_slug, $echo );
Parameters
- $menu_slug
- ( string ) required – The slug name to refer to this menu by (should be unique for this menu).
- $echo
- ( bool ) optional default: 1 – Whether or not to echo the URL. Default true.
Returns
string The menu page URL.
Source
File name: wordpress/wp-admin/includes/plugin.php
Lines:
1 to 23 of 23
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; }