Moving admin submenu to top level
-
I’m trying to move a submenu from settings and make it a top level menu
I tried using this but it is only rearranging top level menusfunction new_menu_order($new_order) {
if (!$new_order) return true;
return array(
‘index.php’,
‘edit.php’,
‘edit.php?post_type=page’,
‘upload.php’, //Media icon
add_filter( ‘custom_menu_order’, array( $this, ‘new_menu_order’ ) );
add_filter( ‘menu_order’, array( $this, ‘new_menu_order’ ) );any help will be appreciated
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Moving admin submenu to top level’ is closed to new replies.