Skip to content

Instantly share code, notes, and snippets.

@tiborp
Created February 15, 2019 11:35
Show Gist options
  • Save tiborp/7ffa2fb2df1e7dce468288ab3565b468 to your computer and use it in GitHub Desktop.
Save tiborp/7ffa2fb2df1e7dce468288ab3565b468 to your computer and use it in GitHub Desktop.
Re-order WordPress admin menu
<?php
/**
* Custom admin functions
*/
namespace Projectname;
// Move Pages above Media
function change_menu_order( $menu_order ) {
return array(
'index.php',
'edit.php',
'edit.php?post_type=page',
'edit.php?post_type=custom-post-type',
'upload.php',
);
}
add_filter( 'custom_menu_order', '__return_true' );
add_filter( 'menu_order', __NAMESPACE__ .'\change_menu_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment