Im using a theme called Sky3c with Wordpress. Just wondering, and its not explicitely related to this theme, but is there a way to get the categories to show up in levels? Ie I have set up in the admin: Main - Sub - Sub Main2 - Sub - Sub But on the actual site the categories are listed as: Main Main2 Sub Sub Sub Sub essentially making multi-level categories pointless if they are not going to display in levels. I recall seeing a blog with category levels but cant remember where it was. Is there a plugin or inbuilt WP function that will allow me to display categories in levels?
Not really, sorry I figured i explained it well enough for people to have an idea what Im talking about
Hi, Your sidebar.php probably uses the list_cats() program. The parameters of this program are described in WordPress codex Template_Tags/list_cats. Jean-Luc
Set "hierarchical=1" in the code. EG <li> <h2>Categories</h2> <ul> <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?> </ul> </li> in your sidebar
This is the current one i have - <?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?>
This is what I currently have for list_cats <?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?> Looks the same as yours amitpatel_3001, do yours show up in levels?
Nevermind, found my answer! http://www.kahsoon.com/2005/05/10/wordpress-hierarchical-category-indent/
I use a nice little plugin on my site to accomplish this. wp-dtree i think it's called. http://www.arscompendium.com for example
I installed wp-dtree on one of my sites last night, it took about 15 minutes, including installing WP-Scriptaculous Now I've got Scriptaculous on Wordpress does anyone know any simple things I can do on my site to take advantage of it?