Quote:
Originally Posted by jryan54
Quick question for all you wordpress geeks out there. Is there a way to order the categories that I create. I know I can swap it around in mysql but wondered if there was a simple way to change the order they appear on my main page directly through the wordpress gui.
|
This plug-in will let you order by Category Name, Category ID, Category Slug or Post count.
There is also
This One but I've never used it so...
You can also do...
Code:
<?php wp_list_categories('orderby=name'); ?>
In the template if you want and can switch "name for ID or Count.
A plug-in is gonna be the way to go really.