A place to talk about the Rin and Manji themes
You are not logged in.
Hi!
Is it possible that the links categories don’t show in the rin theme in sidebar?
I mean, with the default theme when you put a link in a category, the name of that category is showed but in rin theme, all the links are displayed in a single column without separate them by category...
Thanks
Fred
Offline
This is about 40 days late, but try this in your sidebar:
<li><h2><?php _e('Link Category 1 Name'); ?></h2> <ul> <?php wp_get_links(1); ?> </ul> </li> <li><h2><?php _e('Link Category 2 Name'); ?></h2> <ul> <?php wp_get_links(2); ?> </ul> </li>
The number in "wp_get_links(1)" is the link category ID and "Link Category 1 Name" is the link category's name.
Last edited by MacManX (19-06-2005 19:52:15)
Offline