WordPress Renaming admin menu items 1
Wordpress

WordPress customization part 3- Changing the order of dashboard menus

This is the 3rd part of wordpress customization series. Now we are going to change the order of wordpress dashboard menus. we can change the order using menu_order filter. Before using menu_order filter, we need to activate custom_menu_order first. Go to your functions.php file and put the following code. function custom_menu_dashbaord_order($menu_order) { if (!$menu_order) return true; return array( ‘index.php’, //…

Continue Reading