Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个简单的我敢肯定,但我无法弄清楚。
当我使用标准的 wordpress 菜单时,如何输入分隔符
即首页 | 关于我们 | 联系我们
我现在得到的只是首页 关于我们 联系我们,他们似乎没有办法把 | 在?
我会建议你使用CssTrick。
Css
.nav li + li:before{ content: " | "; padding: 0 10px; }
WordPress方式:
<?php wp_nav_menu('menu=Top Menu&after=<span class="menu-divider">|</span>'); ?>
注意:根据上面样式中的 html 更改类。