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.

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

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