制作備忘録

仕事でぶちあたった壁の備忘録です。Wordpressが多め。

カスタムウォーカーを使用して、カスタムメニューのsub-menuをdivで囲む

function.php

class custom_walker_nav_menu extends Walker_Nav_Menu {
    function start_lvl(&$output, $depth = 0, $args = array()) {
        $output .= '<div class="nav-child"><ul class="nav-child-ul">';
    }
    function end_lvl(&$output, $depth = 0, $args = array()) {
        $output .= '</ul></div>';
    }
}
'walker' => new custom_walker_nav_menu(),

01earth.jp