Wordpress中的后置计数器

时间:2014-01-06 10:22:01

标签: wordpress

我已经完成了一个目录网站的构建,我想在页脚中添加一些内容,以计算网站上的总列表数量。

例如:如果有20个人在我的网站上列出,我希望页脚能说“总计:20”。

具有此功能的网站将是Themeforest.net。在页面底部,他们有“总项目(数量)”

1 个答案:

答案 0 :(得分:1)

您需要检查wp_count_post()函数:http://codex.wordpress.org/Function_Reference/wp_count_posts

<?php $count_posts = wp_count_posts('the-post-type'); ?>