AppThemes RSS Feed

How to Exclude Empty WordPress Categories

By default, ClassiPress includes listing all categories so your site visitors are able to post a new ad and place it in a category even if it’s empty. Otherwise, they wouldn’t even know the category exists and it’s pointless to even have it. With that being said, a couple of you have asked me how to remove empty categories from the ClassiPress navigation which is actually quite easy.

wp_list_categories-example

ClassiPress uses the standard WordPress function wp_list_categories which allows you to pass certain parameters into it and alter the results. All of the parameters have certain default values if you don’t pass anything into the function it just uses the defaults.

For example, in the index.php file do a search for wp_list_categories and you’ll find something like this:

wp_list_categories('show_count=0&title_li=&depth=1');

As you can see it is passing in three different parameters which basically says:

  • show_count=0 – Don’t show the category count ( i.e. Shoes (3) )
  • title_li= – Don’t show the default header (i.e. Categories) which is equal to nothing on purpose
  • depth=1 – Only show the first level of categories. If you change this to 2 or 3, it will show you sub categories

These are only three out of 15+ parameters you can set to achive different settings. So, if you wanted to remove all empty categories from the list, you would add the following parameter to the string –> hide_empty=0. See the example below as to how you would add it to the existing function call.

wp_list_categories('show_count=0&title_li=&depth=1&hide_empty=0');

Pretty easy huh? You should play around with the other parameters and see how they affect your category listing. The WordPress codex (their tech docs) provides some great examples and is a good place to start learning how WordPress works under the covers.

Tags: , ,

7 Responses to “How to Exclude Empty WordPress Categories”

  1. Syed Hasnain
    July 20, 2009 at 1:42 am #

    I started working with version 2.9.2; This is the snippet from the index.php:

    ‘show_count=0&hide_empty=true&orderby=name&order=asc&title_li=’

    I had already changed ‘hide_empty=true’ to ‘hide_empty=0′ before reading your article. I now realize that this was the intended default. No problems on my end. Just reporting.

  2. Thailand Cash
    August 24, 2009 at 1:49 am #

    do they show from the start and if they not show how do i set them?

  3. green
    September 15, 2009 at 1:14 pm #

    how can choice like 4 categories instead of one when posting ?????

  4. jhon
    September 18, 2009 at 1:06 pm #

    what if i created 4 dropdown how can i display in 4 new ad that submited instead of one user

  5. datgogo
    November 26, 2009 at 11:13 am #

    Im trying to show empty categories it that possible??

  6. David
    November 30, 2009 at 2:06 am #

    Toggle the “hide_empty=0″ from 0 to 1 and it will hide/show your empty categories.

  7. Johnny Ratcliffe
    December 1, 2009 at 7:34 am #

    The toggle doesn’t want to work when changed to 1, still doesn’t show the empty categories… any ideas. Thanks

Leave a Comment