简体   繁体   English

从循环中排除当前帖子

[英]Exclude current post from loop

I want to add a Wordpress loop for a specific category in a post template that exculdes the current post.我想在排除当前帖子的帖子模板中为特定类别添加 Wordpress 循环。

I was suggested to use:我被建议使用:

<?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'));
?>

But I'm having trouble getting it to work.但我无法让它工作。

My loops currently looks like this.我的循环目前看起来像这样。

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

Try this code.试试这个代码。

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

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

The two code blocks are using two different techniques for a Wordpress custom loop... the first modifies the global query, and the second creates a new custom query.这两个代码块为 Wordpress 自定义循环使用了两种不同的技术……第一个修改全局查询,第二个创建一个新的自定义查询。 I've outlined both below with your loop template.我在下面用你的循环模板概述了两者。

Example with suggested code, global query:带有建议代码的示例,全局查询:

Loop through the global $wp_query object in the loop code:在循环代码中循环遍历全局 $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>

Example with original code, custom query :带有原始代码的示例,自定义查询

Loop through the custom query, adding 'post__not_in':循环自定义查询,添加“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>

Sorry if my original answer was unclear, I initially thought you were combining the two code blocks.抱歉,如果我的原始答案不清楚,我最初以为您将两个代码块组合在一起。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM