从循环中排除当前帖子

时间:2015-06-23 18:59:59

标签: php wordpress while-loop categories

我想在帖子模板中为特定类别添加一个Wordpress循环,以取消当前帖子。

我被建议使用:

<?php
global $wp_query;
$cat_ID = get_the_category($post->ID);
$cat_ID = $cat_ID[0]->cat_ID;
$this_post = $post->ID;
query_posts(array('cat' => $cat_ID, 'post__not_in' => array($this_post), 'posts_per_page' => 14, 'orderby' => 'rand'));
?>

但是我无法让它发挥作用。

我的循环目前看起来像这样。

<div class="video">
    <?php
        $catquery = new WP_Query( 'category_name=video&posts_per_page=4' );
        while($catquery->have_posts()) : $catquery->the_post();
    ?>

    <div>
        <a href="<?php the_permalink(); ?>">
            <?php the_post_thumbnail(); ?>
            <h2><?php the_title(); ?></h2>
        </a>
    </div>

    <?php endwhile; ?>

    <p class="more">M<br>O<br>R<br>E</p>
</div>

3 个答案:

答案 0 :(得分:2)

试试这段代码。

$postid = get_the_ID();
    $args=array(
      'post__not_in'=> array($postid),
      'post_type' => 'post',
       'category_name'=>'video',
      'post_status' => 'publish',
      'posts_per_page' => 4

    );


    <div class="video">
        <?php
            $catquery = new WP_Query( $args );
            while($catquery->have_posts()) : $catquery->the_post();
        ?>

        <div>
            <a href="<?php the_permalink(); ?>">
                <?php the_post_thumbnail(); ?>
                <h2><?php the_title(); ?></h2>
            </a>
        </div>

        <?php endwhile; ?>

        <p class="more">M<br>O<br>R<br>E</p>
    </div>

答案 1 :(得分:1)

使用

'post__not_in' => array($post->ID)

答案 2 :(得分:-1)

两个代码块对Wordpress自定义循环使用两种不同的技术......第一种修改全局查询,第二种创建新的自定义查询。我已经使用您的循环模板概述了下面的内容。

建议代码示例,全局查询:

循环遍历循环代码中的全局$ wp_query对象:

<div class="video">
<?php
    global $wp_query;
    $cat_ID = get_the_category($post->ID);
    $cat_ID = $cat_ID[0]->cat_ID;
    $this_post = $post->ID;
    query_posts(array('cat' => $cat_ID, 'post__not_in' => array($this_post), 'posts_per_page' => 14, 'orderby' => 'rand'));
?>

<!-- use the global loop here -->

<?php while ( have_posts() ) : the_post(); ?>


    <div>
        <a href="<?php the_permalink(); ?>">
            <?php the_post_thumbnail(); ?>
            <h2><?php the_title(); ?></h2>
        </a>
    </div>

<?php endwhile; ?>

<p class="more">M<br>O<br>R<br>E</p
</div>

原始代码示例,自定义查询

循环浏览自定义查询,添加&#39; post__not_in&#39;:

<div class="video">
<?php
    $catquery = new WP_Query(     'category_name=video&posts_per_page=4&post__not_in=' . $post->ID );
    while($catquery->have_posts()) : $catquery->the_post();
?>

    <div>
        <a href="<?php the_permalink(); ?>">
            <?php the_post_thumbnail(); ?>
            <h2><?php the_title(); ?></h2>
        </a>
    </div>

    <?php endwhile; ?>

    <p class="more">M<br>O<br>R<br>E</p>
</div>

很抱歉,如果我的原始答案不清楚,我最初认为你正在组合这两个代码块。