Hi all, I want you to look at the folllowing links and see the catergories box in each link so that you would get some idea.. http://www.amitbhawani.com/travel/ http://www.amitbhawani.com/india/ http://www.amitbhawani.com/auto/ http://www.amitbhawani.com/blog/ i too need similar kind of category box for each menu item with two columns. Suggest me a good plugin . Thanks, Logesh.
Here is the code to get categories list in wordpress. For box, just write some css code like #lists { }, #lists ul{ }, #list ul li { } #list ul li a { } etc. You can make two column boxes in css code. <div id="lists"><ul><li> <?php wp_list_categories('sort_column=name&sort_order=asc&children=true&hierarchical=true&title_li=<h2>Categories</h2>'); ?> </li></ul></div> Code (markup):