【发布时间】:2016-12-15 04:23:02
【问题描述】:
如何排除single.php相关帖子中打开的帖子?
这是我的代码:
<?php
$wp_query = null;
$args = array(
'post_type' => 'glavna_vijest',
'numberposts' => 2
);
$wp_query = new WP_Query($args);
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<h3><?php the_title(); ?></h3>
<?php endwhile; ?>
【问题讨论】:
-
“公开帖子”是什么意思? = 是否允许评论?
-
不,我在 single.php 中有其他帖子或相关帖子,我不想在那里显示打开的帖子
-
我只是添加这部分'post__not_in' => array($post->ID)