Is there a way to show a list of all categories available even if there are no posts associated with them. So if there is a post in that category then it echos a link and if not it just echos out the name of the category?

I’m using wp_list_categories() to show them…

2 Answers
2

There’s an argument called hide_empty which is true by default.

$args = array('hide_empty' => FALSE);
wp_list_categories($args);

Codex: wp_list_categories()

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *