如何计算一个月前的作者帖子

我想显示用户一个月前发布的帖子数
我使用此代码, 但是它显示了所有日期和时间的帖子数

count_user_posts($author_id);

#1我相信你将需要手动进行操作。也许使用WP_Query。 count_user_posts()函数不允许按日期过滤。
$args = [ 'post_type'=> 'post', 'author'=> $author_id, 'post_status'=> 'publish', 'posts_per_page'=> -1, 'date_query' => [ [ 'after' => '30 days ago', 'column' => 'post_date', ], ], ]; $posts = new \WP_Query($args); $total = $posts-> found_posts;

【如何计算一个月前的作者帖子】有关WP_Query类的更多信息:https://developer.wordpress.org/reference/classes/wp_query/

    推荐阅读