How to change the position of menu item?
Ubermenu is great, but probably unnecessary if this is all you’re trying to do. There are a ton of different ways to do this. Here’s a couple: 1) Custom Walker <?php // custom walker targeting products menu class productMenu extends Walker_Nav_Menu { function end_el(&$output, $item, $depth=0, $args=array()) { if( ‘Products’ == $item->title ){ // PRODUCT … Read more