Skip to content

Instantly share code, notes, and snippets.

@mnmldave
Created October 17, 2011 03:59
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mnmldave/1291914 to your computer and use it in GitHub Desktop.
Save mnmldave/1291914 to your computer and use it in GitHub Desktop.
Reverse wordpress nav menu
/**
* Enables a 'reverse' option for wp_nav_menu to reverse the order of menu
* items. Usage:
*
* wp_nav_menu(array('reverse' => TRUE, ...));
*/
function my_reverse_nav_menu($menu, $args) {
if (isset($args->reverse) && $args->reverse) {
return array_reverse($menu);
}
return $menu;
}
add_filter('wp_nav_menu_objects', 'my_reverse_nav_menu', 10, 2);
@eliements
Copy link

Thanks for sharing this!
I just have one question: Is there a way to only affect the reverse order of the main menu and not the submenus?

@timnovinger
Copy link

@eliements You can do that by add_filter() right before you invoke wp_nav_menu() for the main menu and then remove_filter() immediately thereafter. Then it won't affect other menus.

@mradulovic988
Copy link

Thanks man. Awesome solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment