WordPress:如何计算 wp_list_pages

发布于 2024-11-06 02:51:56 字数 317 浏览 0 评论 0原文

我目前正在使用“wp_list_pages”在我的 WordPress 网站中显示子页面。

这是我显示页面的代码;

                wp_list_pages("title_li=&child_of=".$post->ID."&show_date=modified&date_format=$date_format&location=sidebar&sort_column=menu_order");

这工作正常,但我希望能够计算结果列表。

你怎么能算这个?

I'm currently using 'wp_list_pages' to display child pages within my wordpress website.

Here is my code to display the pages;

                wp_list_pages("title_li=&child_of=".$post->ID."&show_date=modified&date_format=$date_format&location=sidebar&sort_column=menu_order");

This works fine but I want to be able to count the list of results.

How can you count this?

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

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

发布评论

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

评论(2

╭ゆ眷念 2024-11-13 02:51:56

您必须使用 get_pages 它将返回一个数组

wp_list_pages 使用 get_pages 检索数据并执行额外的格式化

You'll have to use get_pages which will return an array

wp_list_pages uses get_pages to retrieve the data and performs extra formatting

此生挚爱伱 2024-11-13 02:51:56

如果您运行的是 2.8 或更高版本,请将参数编号添加到 wp_list_pages 函数。

看起来有问题。添加number=8,输出4页。

其记录在这里,http://codex.wordpress.org/Function_Reference/wp_list_pages

If you're running version 2.8 or above, add the parameter number to the wp_list_pages function.

Seems buggy. Adding number=8, outputs 4 pages.

Its documented here, http://codex.wordpress.org/Function_Reference/wp_list_pages

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