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

我想显示用户一个月前发布的帖子数

我使用此代码, 但是它显示了所有日期和时间的帖子数

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/

来源:

https://www.srcmini02.com/63199.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?