Exclude current post from WP Query
There are times when you don’t want the current post/page you are viewing to show on the page i.e. list of recent posts, more posts from the same category and so on. Here’s how to remove that post from your query.
In my situation I had a list of posts from a certain category that I wanted to include in the sidebar (I used the php code widget to add php to my sidebar widget) but I didn’t want the post I was currently on to be displayed in that list. So here’s the code I used:
So, in the code below “get_the_ID” is fetching the ID of the current post, “cat” is indicating the category I want to show posts from, “showposts” is indicating how many posts I would like to display and then finally “post__not_in” is getting the current post ID and then excluding it from the query.
1 2 3 4 5 6 7 |
<?php $currentID = get_the_ID(); $my_query = new WP_Query( array('cat' => '1', 'showposts' => '5', 'post__not_in' => array($currentID))); while ( $my_query->have_posts() ) : $my_query->the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></h2> <?php the_content(); ?> <?php endwhile; ?> |
thank you
Thanks mate
Perfect for my need. Thanks! 🙂
Very Simple Thank You….
Thanks!!
To the point, thank you
Thanks for this post. It’s still very useful.
this helped me out 🙂
thanks!