我正在使用这个get\\u posts数组按评论检索前15个热门帖子。问题是,它显示了所有那些在博客中添加的评论很高的帖子。因此,列表有时会发生变化,但大部分时间保持不变。
如何限制/显示过去7天的帖子?这将显示上周评论最多的帖子。
谢谢
这是我的代码:
global $post;
$args = array(
\'orderby\' => \'comment_count\',
\'order\' => \'DESC\' ,
\'numberposts\' => 15);
$popular_posts = get_posts( $args );
foreach( $popular_posts as $post ) :
if (has_post_thumbnail()) { ?>
<li>
<div class="widgetimg">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'widgetimg-thumb\'); ?></a>
</div>
</li>
<?php } endforeach; ?>