Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Last active December 24, 2015 03:29
Show Gist options
  • Save DrewAPicture/6737279 to your computer and use it in GitHub Desktop.
Save DrewAPicture/6737279 to your computer and use it in GitHub Desktop.
<?php
function filter_menu_order( $order ) {
return array(
'index.php','separator1', 'edit.php', 'edit.php?post_type=page',
'users.php', 'upload.php', 'edit-comments.php', 'separator2', 'themes.php',
'plugins.php', 'tools.php', 'options-general.php', 'separator-last'
);
}
add_filter( 'menu_order', 'filter_menu_order' );
add_filter( 'custom_menu_order', '__return_true' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment