Re-order categories in Wordpress navigation

Usually plugin allows you to set the order in which categories will appear in the sidebar. But some code tweaks and My Category Order Plugin installation helps you in reordering categories in wordpress menu navigation through the drag and drop interface

1. Install My Category Order Plugin
2. In header.php find the catgory listing code

for eg:
 wp_list_categories('title_li=&orderby=id');  


3. Replace the above code with the following

   wp_list_categories('orderby=order&title_li='); 


you are done...

site visitor