wp query - Multiple loops without repeating content

admin2025-06-02  2

I have a second loop on a page where I want to display posts from the same category as the present post but excluding the present post.

I have a loop that displays all the posts from the same category as the current post, but does not exclude the current post.

  <?php
  $project_category = wp_get_post_categories($post->ID); 
  $postid = $post->ID;
  ?>

  <?php
  $the_query = new WP_Query( array(
      'category__in' => $project_category,
      'posts_per_page' => -1,
      'post__not_in' => $postid,
  ) );
  ?>

  <?php                                                      
  $loop = new WP_Query( $the_query );
  while ( $loop->have_posts() ) : $loop->the_post();  
  ?>

I have a second loop on a page where I want to display posts from the same category as the present post but excluding the present post.

I have a loop that displays all the posts from the same category as the current post, but does not exclude the current post.

  <?php
  $project_category = wp_get_post_categories($post->ID); 
  $postid = $post->ID;
  ?>

  <?php
  $the_query = new WP_Query( array(
      'category__in' => $project_category,
      'posts_per_page' => -1,
      'post__not_in' => $postid,
  ) );
  ?>

  <?php                                                      
  $loop = new WP_Query( $the_query );
  while ( $loop->have_posts() ) : $loop->the_post();  
  ?>
Share Improve this question edited Jul 21, 2015 at 2:15 gmazzap 46.3k6 gold badges95 silver badges147 bronze badges asked Jul 21, 2015 at 2:04 scottayscottay 234 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

As explained in Codex

post__not_in (array) - use post ids. Specify post NOT to retrieve.

post__not_in argument have to be passed as array.

Change your query to:

$the_query = new WP_Query( array(
    'category__in'   => $project_category,
    'posts_per_page' => -1,
    'post__not_in'   => array( $postid ),
) );

And it should work.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748862914a314344.html

最新回复(0)