wp-list-categories

wp_list_categories does not show current category

My blog's main menu is made of the categories, displayed via the wp_list_categories function. If i click on one of the categories, the current category is highlighted in the category menu, and the list of articles inside that category are listed. Everything is fine. But if i then click on one article, the Category menu does not show th...

wordpress sidebar issue with wp_list_categories showing NO Categories

So on my wordpress install. I am trying to display category list in the sidebar but having issue with wp_list_categories function. There are handful of categories in the system but this function just prints "NO Categories". Can't figure out why. Any ideas? ...

Create drop down menu of Posts from Category in Wordpress

Hey guys I'm working on this site www.annapogossova.com for a friend. Currently the menu navigation is running through Pages i've created each gallery in. When it comes time to expand the site - I want it to be fairly dynamic so that each gallery page/post is added to the drop down menu automatically and she doesn't have to edit the ...

List Categories for Custom Post Types - Wordpress

I'm using custom post types in Wordpress 3.0 (now 3.0.1) to setup a custom directory system, but can't seem to find how to list out the categories under the custom taxonomy similar to how you'd use the wp_list_categories for normal posts. Anyone know how you'd do this on a page? Thanks! I've seen suggestions for options like the followi...

WordPress remove <br/> separator from last item in wp_list_categories

Hi, I'm trying to remove the last separator (normally a <br/> tag but I changed it to "//") from the last link from wp_list_categories. Basically I want this: Category 1 // Category 2 // Category 3 // to look like this: Category 1 // Category 2 // Category 3 Here's the current code I'm using: <?php $cat_array = array(); $args=arra...

Wordpress Categories and SubCategories

Hello all, I am doing some changes on my blog theme, and i need to list the subcategories when user is inside the parent category, example: main-category -- subcat1 -- subcat2 So i need to show the subcat1 and subcat2 only when the user is inside main-category. At this moment i have 2 divs, one for the main-categories (this is what ...

wordpress categories

hi i am creating a theme which consists of two pages, blog and portfolio. therefore i have categories which related to the portfolio posts (ie. web design, graphic design) and categories relating to the blog posts (ie. tutorials, todos) i have two pages (/blog and /portfolio), in each, i would like to show the list of categories relat...

WordPress > wp_list_categories with no child categories listed

The script below creates a listing of the categories in the site (excluding those in "uncategorized"). If possible, I'd like to modify it so that it only lists the top level categories (no child categories)... I thought the "depth"=1 argument would do the trick but not so. It lists ALL categories. When I remove the "heirarchical" argy...