制作wordpress主题时,需要调用当天网站发布的文章数量,博客吧前面发布过教程《实现wordpress限定时间段的文章数量》可以实现统计24小时内发布文章的数量,而今天的代码是实现统计当天发布文章的数量。
实现代码:
1 2 3 4 5 6 |
<?php $today = getdate(); $query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"]); $postsNumber = $query->found_posts; echo $postsNumber; ?> |
把代码添加到要显示的位置即可。
附:调用指定分类下的当天文章数量:
1 2 3 4 5 6 |
<?php $today = getdate(); $query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"].'&cat=1'); $postsNumber = $query->found_posts; echo $postsNumber; ?> |
提示:&cat=后面的1是分类ID,wordpress获取分类ID的方法:
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/248128.html