mazakaro
Member
Posted 3 weeks ago #
Hi,
I want to split categories of my wordpress blog into two parts. First half should be visible on left sidebar and remaining part of categories should be visible in right side bar.
I want this because my blog has a huge set of categories so i want to divide it into 2 parts.
Thanks
mazakaro
Member
Posted 3 weeks ago #
Please give solution for this.....
mazakaro
Member
Posted 2 weeks ago #
henkholland
Member
Posted 2 weeks ago #
Do you mean splitting the menu items?
<?php wp_list_categories('orderby=order&title_li=&include=10,11'); ?>
<?php wp_list_categories('orderby=order&title_li=&include=13,9'); ?>
then put the first one in your left sidebar.php and the other one in the rightsidebar.php
Sidebar names depend on theme. 10,11 etc are numbers of wanted category, so change them to your wishes.
mazakaro
Member
Posted 1 week ago #
Thanks a lot.... u r wonderful :)