0

I am using Wordpress 3.0.Is it possible to apply different style class to wordpress wp_nav_menu()? Currently five pages for me and I would like to apply in following order.

<ul>
      <h2>
        <li><a href="#">Example1</a> </li>
      </h2>
      <span>
      <li><a href="#">Example2</a></li>
      </span>
      <h4>
        <li><a href="#">Example3</a></li>
      </h4>
      <h3>
        <li><a href="#">Example4</a></li>
      </h3>
      <h5>
        <li><a href="#">Example5</a></li>
      </h5>
</ul>
4

1 回答 1

0

这不是语义正确的 html - 也许您想为每个 li 添加一个类?

WP 向其生成的 LI 添加类,如下所示:

page_item page-item-27

其中数字与文章/页面的 ID 有关。

CSS:

.page-items-27 {
    color:#fff;
    background:blue;
    font-size:14px;
    // etc
}
于 2010-09-09T08:24:51.280 回答