Posts tagged as:

category

Your site runs on WordPress and you want to hide posts which belong to certain categories or sub-categories from your front page, search or archives.
That should be an easy task.
These days, there are a number of WordPress plugins developed for that purpose and here are three of them:
Front Page Excluded Categories – Excludes [...]

{ 4 comments }

This is an update of an entry we wrote last week, How to list posts by category.
Here is another block of codes that you can use to display selected posts from a category. The one you see on the right panel of this page like issues // must reads is an example:
 <h2>Category description</h2>
   <ul>
   <?php query_posts(‘category_name=Category&showposts=x’); while (have_posts()) [...]

{ 1 comment }

If your website has very good articles, chances are you wanted to get extra mileage for those articles. And it is truly a shame and a waste  if you cannot share them.
The question is, without manually listing and manually updating your list, how do you separately list those articles from the rest of your posts so [...]

{ 3 comments }