Created
February 15, 2019 11:35
-
-
Save tiborp/7ffa2fb2df1e7dce468288ab3565b468 to your computer and use it in GitHub Desktop.
Re-order WordPress admin menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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