I was searching desperately for a solution for creating a custom WordPress feed that excluded two categories that would be…
Tag Archive categories
We often find ourselves looking for the best and easiest way to exclude categories or pages from the navigation menu,…
The WP-Sticky WordPress plugin allows you to easily choose to “stick” certain posts at the top of your blog. This…
Anthology of Ideas shares his method for creating a horizontal drop-down menu for categories, involving the use of CSS and…
I’ve never come across a situation where I would need this feature, but I’d like to have this on record…
There are many situations where you want to make sure that certain categories only appear on some pages, and not…
You may want to display posts from a specific category on the homepage or other pages of your site. For…
To get a post from a specific category to appear at the top of the page above the rest of…
<?php$postlist = get_posts(‘category=6&numberposts=5’); foreach ($postlist as $post) :?><li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li><?php endforeach; ?> Use this in the sidebar…
WordPress allows you to give different styles to different categories in a range of ways. You can style a category…