dtc99987 2014-11-25 07:51
浏览 295
已采纳

如何使用Wordpress在菜单中添加Active类

How to add Class in active menu in wordpress. I have use below Code. but it's not working please help me

                  wp_nav_menu( array(

                        'container' => '',
                        'items_wrap' => '%3$s',
                        'theme_location' => 'primary'

                    ) ); 
  • 写回答

3条回答 默认 最新

  • dry9192 2014-11-27 09:51
    关注

    please add this code in your nav-menu-template.php file in line number near about 149.

    $item_output .= '<a'. $attributes .' class="'.$classes[0].'" >';
    

    Now on this case your css class apply to href link and you want to just add this class in admin side menu css classes.

    let me know once done.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?