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 posts in one or more categories from appearing on the front page. You can assign these posts to an excluded … [Read more...]
How to select and display posts from a category
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()) : the_post(); … [Read more...]
How to list posts by category
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 that they stand out. … [Read more...]

Comments // Feedback