Lonewolf Online

A gem is not polished without rubbing, nor a man perfected without trials.

Make Wordpress not Show Posts of Subcategory

In some cases you may wish to display ONLY the posts of a category and not posts of its child categories on a Wordpress blog.


Lets say you had a parent category of "Weather" with sub-categories "America" and "United Kingdom". When a user clicks on the weather category, Wordpress will automatically display posts from the Weather category AS WELL AS the posts of America and United Kingdom.

If this is not the behaviour you are after, there is a template tag trick that you can use in your theme to show posts of the current category ONLY.


If you have an archive.php or category.php open that, otherwise open index.php. Don't forget to back them up just in case things go wrong!

Find the line similar to:

<?php while (have_posts()) : the_post(); ?>

Which is the start of "The Loop" and add after it on the next line:

<? if ((is_category()) && in_category($wp_query->get_queried_object_id())) { ?>

This line checks if we are viewing a category, and that the post being processed is a member of the category being viewed. If it is then we will show the post.

$wp_query->get_queried_object_id() returns an integer ID of the category being viewed.

in_cagegory() tests if the current post in the loop is a member of the specified category, in this case we pass it the current category.

Next find the line:

<?php endwhile; ?>

Which is the end of the loop, and add a line BEFORE it containing:

<?php } ?>

This small modification will stop posts of child categories from showing when a parent category is selected. Of course you will need some posts in Weather otherwise you will have a blank page. You can also use the information on the Wordpress Codex template tags to create static pages for each category if you wish.

If you only wish to stop sub category posts from showing on one particular parent category you can specify the required category in the is_category() method. Simply insert the numerical id of the parent category in the brackets, e.g. is_category(10) will stop sub category posts from showing only if we are viewing the category with ID of 10. All other categories will retain their default setting.

 

Comments

2. Richard Comment
2008-05-07
causes a fatal error in category.php in V 2.51 Any ideas??

thanks
unknown   firefox
1. Everett - Everett's Site Comment
2008-03-17
I tried this fix but then the first page of every main category was blank. The &quot;next&quot; page would show entries that were inside that main category, but for some reason the first page still showed up without any posts on it. ???
US   firefox

  Click to add your comments...

(required)
(optional)
(optional)
(required)
(required) Captcha Security Image
 

All comments are submitted for moderation before they appear. There will be a delay before your response is shown.

  • Random Photographs
    • Jade Plant
    • Side on
    • Standing Stone on Vally
    • Top of a bridge
    • Trackday Pitlane
    • Screen Corrupt
    • Friendly Squirrel
    • Duck
    • Driftworks Demo
    • Sunset
  • Recently Uploaded
  • Bookmark and Share
    This page was published on 2007/12/13 and has been viewed 593 times.
  • Donate

    If this page has been of help to you, please consider donating to help me cover the costs of running this site. Thankyou.

  • Visitor Counter
  • Advertisement
This page was last updated on Sat, 02 Feb 2008 21:00:00 GMT.
Unless otherwise stated, all photographs on this website are Copyright © Tim Trott. Any use require written permission from myself.
Website Design and Graphics Copyright © 2005-2007 Tim Trott. home :: sitemap :: disclaimer:: contact :: webmaster