PHP 和 WordPress:对菜单项进行排序

发布于 2024-09-09 07:30:13 字数 349 浏览 4 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

罗罗贝儿 2024-09-16 07:30:13

试试这个:

wp_list_pages('sort_column=ID&sort_order=desc&title_li=&depth=1&');

Try this:

wp_list_pages('sort_column=ID&sort_order=desc&title_li=&depth=1&');
诗笺 2024-09-16 07:30:13

还可以考虑使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文