remove_submenu_page

Definition:
function remove_submenu_page( $menu_slug, $submenu_slug ) {}

Remove an admin submenu

Parameters

  • string $menu_slug: The slug for the parent menu
  • string $submenu_slug: The slug of the submenu

Return values

returns:The removed submenu on success, False if not found

Source code

function remove_submenu_page( $menu_slug, $submenu_slug ) {

	global $submenu;



	if ( !isset( $submenu[$menu_slug] ) )

		return false;



	foreach ( $submenu[$menu_slug] as $i => $item ) {

		if ( $submenu_slug == $item[2] ) {

			unset( $submenu[$menu_slug][$i] );

			return $item;

		}

	}



	return false;

}

10204

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: