WordPress:如何计算 wp_list_pages
我目前正在使用“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用
get_pages
它将返回一个数组wp_list_pages
使用get_pages
检索数据并执行额外的格式化You'll have to use
get_pages
which will return an arraywp_list_pages
usesget_pages
to retrieve the data and performs extra formatting如果您运行的是 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