Sarathlal N

Exclude posts from WordPress home page based on their category

There may be situations where we want to exclude posts from the WordPress home page based on their category.

To get this done, first we want to find template file for home page. Very often, it will be index.php in our theme folder. Then find the below line of code on it.

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

Just replace this line with below code.

<?php query_posts('cat=-4'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

This will exclude posts in category number four from being displayed on the home page.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.