-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
I made a new category for a post, but it wasn't visible. I did some googling and a suggestion was that it may be hidden because it has no posts in it yet. That appears to be true.
Current dropdown code:
<?php wp_dropdown_categories(array('name' => 'category', 'orderby' => 'name', 'taxonomy' => 'category', 'selected' => 1)); ?>Suggested update:
<?php wp_dropdown_categories(array(
'name' => 'category',
'orderby' => 'name',
'taxonomy' => 'category',
'hide_empty' => 0,
'selected' => 1
)); ?>Note the addition of hide_empty
Metadata
Metadata
Assignees
Labels
No labels