X

Avoid Duplicate Posts in Multiple Loops

Snippets by IsItWP

Do you want to create a simple PHP array and put post IDs from the first loop in it? While there’s probably a plugin for this, we have created a quick code snippet that you can use to check if post ID is contained in the $ids array and avoid duplicate posts in multiple loops in WordPress.

Instructions:

All you have to do is add this code to your theme’s post.php or single.php file:

<h2>Loop n°1</h2>
<?php
$ids = array();
while (have_posts()) : the_post();
the_title();
?>
<?php $ids[]= $post->ID;
endwhile; ?>

<h2>Loop n°2</h2>
<?php
query_posts("showposts=50");
while (have_posts()) : the_post();
if (!in_array($post->ID, $ids)) {
  the_title();?>
<?php }
endwhile; ?>

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 15 best content marketing tools for WordPress and how to create a contact form in WordPress.

Comments   Leave a Reply

  1. it show 50 post how do i reset it
    i try changing the showpost to 10 it became empty

    1. You may want to try replacing line 12 with:
      query_posts( 'posts_per_page=10' );

Add a Comment Cancel reply

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!