Menu reordering function (1 post)

  • Profile picture of Chris Hart Chris Hart said 6 months, 2 weeks ago:

    Add this to your themes functions.php to change the order of your wp-admin menu, handy for switching emphasis of pages and posts amongst over things.

    The pages are identified by the link to that page eg Dashboard = index.php.

    function custom_menu_order($menu_ord) {
    if (!$menu_ord) return true;
    return array(

    // Menu order
    ‘edit.php?post_type=page’,
    ‘edit.php’,
    ‘nav-menus.php’,
    ‘options-general.php’,
    ‘index.php’

    );
    }

    add_filter(‘custom_menu_order’, ‘custom_menu_order’);
    add_filter(‘menu_order’, ‘custom_menu_order’);