Wordpress:如果允许发表评论,则仅显示特定类别的帖子

Wordpress:如果允许发表评论,则仅显示特定类别的帖子,wordpress,loops,post,comments,Wordpress,Loops,Post,Comments,我有一个页面,显示某个类别的某些帖子,在本例中为类别33: <?php $top_query = new WP_Query('cat=33'); ?> <?php while($top_query->have_posts()) : $top_query->the_post(); ?> 我怎样才能指定返回的帖子只应该是那些启用了注释的帖子?。 我试过用以下方式包装: <?php if(comments_open()) : ?>

我有一个页面,显示某个类别的某些帖子,在本例中为类别33:

  <?php $top_query = new WP_Query('cat=33'); ?>
  <?php while($top_query->have_posts()) : $top_query->the_post(); ?>

我怎样才能指定返回的帖子只应该是那些启用了注释的帖子?。 我试过用以下方式包装:

<?php if(comments_open()) : ?> 

需要在循环中使用的悬停:(

提前感谢

在中,post状态保存在
comment\u status
列中的
$wpdb->posts
表中。请尝试将此变量传递给以下对象:

<?php $top_query = new WP_Query( array('cat'=>33, 'comment_status'=>'open'); ?>
<?php while($top_query->have_posts()) : $top_query->the_post(); ?>