去年的职位总数

时间:2011-01-02 作者:Саша Стефановић

如何回应去年的帖子总数?我正在用统计数据撰写文章,希望获得我去年发布的帖子数量。

这里有些东西,但不是去年的http://perishablepress.com/press/2006/08/28/display-total-number-of-posts/ 它只显示所有帖子的总数

1 个回复
最合适的回答,由SO网友:Manny Fleurmond 整理而成

您所需要做的就是修改SQL查询。使用链接的代码作为基础:

$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = \'publish\' AND year(post_date) = 2010");
if (0 < $numposts) $numposts = number_format($numposts); 
我添加的“AND”基本上为您提供了2010年的所有帖子。相应更改年份

结束

相关推荐

插件卸载:为什么在$wpdb->查询($DROP_SQL)之后运行DBDelta

我正在读专业的wordpress。他们卸载插件的代码是//build our query to delete our custom table $sql = \"DROP TABLE \" . $table_name . \";\"; //execute the query deleting the table $wpdb->query($sql); require_once(ABSPATH .’wp-admin/includes/upgrade.php’)