AppThemes

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.

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:

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.

Your rating: none
Rating: 0 - 0 votes