Hiding a category from recently published posts in WordPress
To hide a category and its posts from recent posts: Get the category id(s), (for example 3) Find index.php Paste the following code just before *’THE LOOP’. <?php query_posts(‘cat=-3’); ?> Note: Please take a backup of your index.php before doing this. *THE LOOP: Although it may differ in some cases, the basic loop would …
Hiding a category from recently published posts in WordPress Read More »