lhoist-stay-safe__backend-t.../includes/navwalker.php
2024-01-26 12:10:13 +01:00

28 lines
532 B
PHP

<?php
class wp_nav_menu_walker extends Walker_Nav_menu
{
function start_lvl(&$output, $depth = 0, $args = null)
{
$tmp_class = "child-" . $depth;
$output .= "<ul class='" . $tmp_class . "'>";
}
function start_el(&$output, $item, $depth = 0, $args = null, $id = 0)
{
$output .= "<li>I like pie" . $item->title;
// var_dump($args);
}
function end_el(&$output, $item, $depth = 0, $args = null)
{
$output .= "...</li>";
}
}