Exclude certain categories from being displayed in wordpress

hide categoryTwo ways to hide posts from certain categories to be displayed on the blog. You can either put this code inside the loop

<?php
if ( have_posts() ) : query_posts($query_string .’&cat=-1,-2′); while ( have_posts() ) : the_post();
?>

or you can use Advanced Category Excluder.


Discover more from Ashesh's Blog

Subscribe to get the latest posts sent to your email.


One Comment