Custom walker pulldown display current page
WordPress add “current-menu-item” class for the active menu item, you could check if this class is set and the set the option for that item be selected. class Walker_Nav_Menu_Dropdown extends Walker_Nav_Menu { function start_lvl($output, $depth) { } function end_lvl($output, $depth) { } function start_el($output, $item, $depth, $args) { // Here is where we create each … Read more