如何对 WordPress 页面进行排序?

发布于 2024-09-13 19:10:07 字数 241 浏览 2 评论 0原文

我创建了 9 页,并从 1-9 订购。我想要的是在标题中分别列出或显示 1-6 的页面链接以及 7-9 的页面。

我的问题是,如何将此代码应用于 WordPress:

SELECT * FROM wp_db WHERE pages <=6

我可以使用此代码 wp_list_pages 进行应用吗?还是有其他方法在 WordPress 中对其进行编码?

I have created 9 pages which I ordered from 1-9. What I want is to list or display the pages link from 1-6 and also pages from 7-9 separately in the header.

My question is, how can I apply this code to WordPress:

SELECT * FROM wp_db WHERE pages <=6

Can I apply with this code wp_list_pages or is there another way to code it in WordPress?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

孤寂小茶 2024-09-20 19:10:07

您可以通过使用参数数组中的排除来对 wp_list_pages 进行两次不同的调用来指定需要

从此页面中提取 的页面集
http://codex.wordpress.org/Template_Tags/wp_list_pages

排除
(字符串)定义要从列表中排除的页面 ID 的逗号分隔列表(示例:'exclude=3,7,31')。没有默认值。请参阅下面的“从列表中排除页面”示例。

You could do it by doing two different calls to wp_list_pages using exclude within your array of arguments to specify the set of pages you need

extract from this page
http://codex.wordpress.org/Template_Tags/wp_list_pages

exclude
(string) Define a comma-separated list of Page IDs to be excluded from the list (example: 'exclude=3,7,31'). There is no default value. See the Exclude Pages from List example below.

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