Wordpress - Custom Theme Development
What will be the output of this walker code snippet?
class My_Walker extends Walker_Nav_Menu {
function start_lvl(&$output, $depth=0, $args=null) {
$output .= "";
}
}
When rendering a submenu?