Just like it says. In word press: How do I put the link categories in the order that I want them to be in? My links are: category 3 category 4 category 1 category 2 and I want them to be : category 1 category 2 category 3 category 4 Any help?
As far as I can see, the categories are listed alphabetically. I even tried changing the cat_ID in phpmyadmin, but that didn't make any difference. Vito
http://codex.wordpress.org/Category_Templates or try editing the sidebar.php and replacing the previous cat code with <?php wp_list_cats('sort_column'); ?>
wp_list_cats() has been replaced with wp_list_categories() in Wp 2.1 wp_list_categories('orderby=name'); Code (markup): http://codex.wordpress.org/Template_Tags/wp_list_categories