PHP 和 WordPress:对菜单项进行排序
我正在开发一个 WordPress 网站,自定义菜单。我不是 php 高手,我希望菜单按照数字顺序排序,而不是按字母顺序排列。
<div id="navigation">
<ul>
<?php wp_list_pages('sort_column=post_title&sort_order=desc&title_li=&depth=1&')?>
</ul>
</div><!-- end id:navigation -->
我有什么想法如何做到这一点?我尝试编辑上面的代码,但我完全丢失了菜单。
I'm working on a wordpress site, customizing the menu. I'm no php whiz, and I want the menu to sort according to the numerical order, not desc alphabetically.
<div id="navigation">
<ul>
<?php wp_list_pages('sort_column=post_title&sort_order=desc&title_li=&depth=1&')?>
</ul>
</div><!-- end id:navigation -->
Any ideas how I do this? I've tried editing the above code, but I just lose the menu altogether.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
还可以考虑使用 WordPress 3.0 新的菜单功能...这将允许管理员创建自定义菜单,通过拖放对其进行排序,并且在您的主题/页面中您可以调用 wp_nav_menu 函数显示菜单。
Also consider using WordPress 3.0 new Menu feature ... this would allow the admin to create a custom menu, sort it via drag and drop and in your theme/page you can call a wp_nav_menu function to display the menu.