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,
wp_list_categories($args);'hide_empty' => 1,
'hide_empty' => 0,
Post a Comment