最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

theme development - How to Modify a Widgets UL andor LI Classes

programmeradmin0浏览0评论

Im attempting to use twitter UL styles on a custom menu widget.

For example, in BootStrap they have a Nav List Style for UL's

<ul class="nav nav-list">
    <li class="nav-header">List header</li>
    <li class="active"><a href="#">Home</a></li>
    <li><a href="#">Library</a></li>
    ...
</ul>

Which I am trying to integrate with a Custom Menu...

<div class="menu-footer_left-container">
    <ul id="menu-footer_left" class="menu"><!-- I need to add "nav nav-list" here! -->
        <li id="menu-item-100" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-100"><a href="">Home</a></li>
        <li id="menu-item-101" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101"><a href="/about-us/">About Us</a></li>
        ...
    </ul>
</div>

What I'd like to be able to do is add the classes to the UL and LI's, but I'm stumped.

Please advise.

Im attempting to use twitter UL styles on a custom menu widget.

For example, in BootStrap they have a Nav List Style for UL's

<ul class="nav nav-list">
    <li class="nav-header">List header</li>
    <li class="active"><a href="#">Home</a></li>
    <li><a href="#">Library</a></li>
    ...
</ul>

Which I am trying to integrate with a Custom Menu...

<div class="menu-footer_left-container">
    <ul id="menu-footer_left" class="menu"><!-- I need to add "nav nav-list" here! -->
        <li id="menu-item-100" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-100"><a href="http://mysite.dev">Home</a></li>
        <li id="menu-item-101" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-101"><a href="http://mysite.dev/about-us/">About Us</a></li>
        ...
    </ul>
</div>

What I'd like to be able to do is add the classes to the UL and LI's, but I'm stumped.

Please advise.

Share Improve this question asked Aug 31, 2012 at 21:31 sleepersleeper 6232 gold badges12 silver badges26 bronze badges 1
  • So far, the only way I have found is to use jQuery to add classes. – sleeper Commented Aug 31, 2012 at 22:23
Add a comment  | 

1 Answer 1

Reset to default 2

you would have to do something like this

<?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?> The container class you can change your class add more class

发布评论

评论列表(0)

  1. 暂无评论