如何在wordpress中循环除开放之外的所有类别帖子?

时间:2013-03-28 07:45:38

标签: wordpress loops posts

在我的single.php中,我希望显示除​​已打开的帖子以外的所有类别帖子。

这是我的代码:pastebin.com loop code

这是类别帖子循环的代码,它循环所有类别帖子和打开的一个,我不想再次循环打开帖子

<?php $catid = the_category_ID( false ); ?> 
                        <?php $postCount = 1; $loop = new WP_Query( array( 'tax_query' => array(array(
                                'taxonomy' => 'category',
                                'field' => 'id',
                                'terms' => $catid
                            )), 'post_type' => 'post', 'posts_per_page' => 15 ) ); if ($loop->have_posts()) { ?>

更新

我有解决方案:

<?php $catid = get_the_category(); $catid = $catid[0]->term_id; ?>
                        <?php $postCount = 1; $loop = new WP_Query( array( 'tax_query' => array(array(
                                'taxonomy' => 'category',
                                'field' => 'id',
                                'terms' => $catid
                            )),
                            'post_type' => 'post',
                            'posts_per_page' => 15,
                            'post__not_in' =>array($post->ID) ) );
                        if ($loop->have_posts()) { ?>

你需要使用'post_not_in'选项。

1 个答案:

答案 0 :(得分:0)

使用此:(示例避免类别3)

 query_posts( 'cat=-3' );

请检查:http://codex.wordpress.org/Function_Reference/query_posts#Exclude_Categories_From_Your_Home_Page

然后在您的页面中,您只需要检查帖子的类别,并将“-3”替换为您要避免的类别ID。