简体   繁体   中英

WordPress: Add HTML to navigation menu

<ul id="menu-primary">
    <li></li>
    <li></li>
    <li></li>
    <span></span> /* Add after the list items; before the closing </ul> tag */
</ul>

How to add <span> tags after the list items, to the WP-menu with id="menu-primary" ?

EDIT

<ul id="menu-primary">
    <li></li>
    <li></li>
    <li></li><li class="fix"></li> /* Add <li class="fix"></li> adjacent after the list items exactly as shown. */
</ul>

Why don't you create a class for the li ?

<ul id="menu-primary">
    <li class ="class"></li>
    <li class ="class"></li>
    <li class ="class"></li>
/* Add after the list items; before the closing </ul> tag */
</ul>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM