Powered by Blogger.

Display all categories in wordpress


We can use wp_list_categories,
wp_list_categories($args);
It will not show if a category has not any post, because by default
'hide_empty'         => 1,
Then pass in the argument
'hide_empty'         => 0,

No comments