从循环中排除当前 post

Exclude current post from loop

我想在排除当前 post 的 post 模板中为特定类别添加 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>

这两个代码块为 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>

带有原始代码的示例,自定义查询:

遍历自定义查询,添加 'post__not_in':

<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>

抱歉,如果我原来的回答不清楚,我最初以为您是在合并两个代码块。

使用

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

试试这个代码。

$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>