wordpress调用当日发布文章数量:
实现代码:
<?php $today = getdate(); $query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"]); $postsNumber = $query->found_posts; echo $postsNumber; ?>
把代码添加到要显示的位置即可。
wordpress调用当日发布文章数量:
实现代码:
<?php $today = getdate(); $query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"]); $postsNumber = $query->found_posts; echo $postsNumber; ?>
把代码添加到要显示的位置即可。
噢!评论已关闭。