This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class myWalker extends Walker_Nav_Menu { | |
// Displays start of a level. E.g '<ul>' | |
// @see Walker::start_lvl() | |
function start_lvl(&$output, $depth=0, $args=[]) { | |
$output .= '<ul>'; | |
} | |
// Displays end of a level. E.g '</ul>' | |
// @see Walker::end_lvl() | |
function end_lvl(&$output, $depth=0, $args=[]) { |
NewerOlder