wordpress 主题制作笔记

2022-06-14 18:00:07 浏览数 (1)

去除菜单输出div ul ,下面这段代码需要设置菜单并且菜单位置为primary才可以,否则将依旧输出div 和ul

代码语言:javascript复制
<?php 
    wp_nav_menu(
        array(
            'theme_location' => 'primary',
            'container' => '',
            'items_wrap' => '%3$s',
            'depth' => 0,
        )
    ); 
?>

0 人点赞