我正在尝试为我的网站的页脚获取一个基于文本的导航菜单。我正在使用wp_nav_menu()
根据指示的参数Codex. 他是一段代码(在footer.php
):
<div id="footer">
<?php wp_nav_menu(array(\'depth\'=>1, \'after\'=>\'<span class="sep">|</span>\')); ?><br />
<div id="address">
<p>...</p>
</div>
<div id="contactInfo">
<p>...</p>
<p>...</p>
</div>
</div><!-- #footer -->
所以,我的目标是让菜单看起来像
Home | About | MorePages
仅包含根级别的页面。
问题是:after
参数被忽略!如果我尝试before
和items_wrap
, 与其他参数一起,它们也会被忽略。我已经能够after_link
和before_link
工作,以及depth
.
我尝试过逃避一些东西,不传递HTML,但都没有帮助。
我是基于沙盒主题构建的,但是nav-menu-template.php
和nav-menu.php
在WP core中显示不变。
How can I get these custom parameters to work?