Opened 4 years ago
Closed 8 months ago
#37728 closed defect (bug) (fixed)
hide_empty doesn't work correctly in get_terms when no taxonomy specified
Reported by: | smerriman | Owned by: | boonebgorges |
---|---|---|---|
Milestone: | 5.3 | Priority: | normal |
Severity: | normal | Version: | 4.5 |
Component: | Taxonomy | Keywords: | has-patch needs-unit-tests reporter-feedback needs-testing |
Focuses: | Cc: |
Description
In #35495, the taxonomy argument to get_terms
was made optional. Calling get_terms without specifying a taxonomy will return terms from all taxonomies.
However, if taxonomy isn't provided, hide_empty (when true, as per default) does not work correctly. Parent terms which are empty themselves but have nonempty child terms are not returned.
You can replicate this by creating an empty category with non-empty child categories. Using:
get_terms()
- won't include the category
get_terms(array('taxonomy'=>'category'))
- will include the category
get_terms(array('taxonomy'=>array('category','post_tag')))
- will include the category
This is caused by the get_terms
function in WP_Term_Query
. $has_hierarchical_tax
gets set to true if a single hierarchical taxonomy is passed, or multiple taxonomies with at least one hierarchical. However, if no taxonomies are passed, this never gets set to true.
In this case it should be set to true, since it will at minimum include the in-built category
taxonomy.
Attachments (1)
Change History (7)
#2
@
12 months ago
- Keywords reporter-feedback close added
Hi @smerriman,
Thanks for this ticket! My apologies that it took so long to receive a response.
I am unable to reproduce the issue you have described in the latest version of WordPress (5.1.1). Are you still able to recreate this? If so, can you provide some more detailed steps, or some unit tests that prove get_terms()
is not working as expected?
Marking as a close
candidate pending reporter-feedback
since this worksforme
.
#3
@
12 months ago
I'm getting exactly the same results now as 3 years ago by following the steps mentioned in my original post:
- install a new version of WP
- create a category, and a subcategory
- create a post, and place it inside the subcategory only
Calling get_terms()
will return the subcategory, but not the parent category.
Calling get_terms(array('taxonomy'=>'category'))
and get_terms(array('taxonomy'=>array('category','post_tag')))
both include the parent category.
The original one line fix still is a valid solution.
#4
@
9 months ago
- Keywords close removed
Have just run into this bug on another site I'm working on. I wanted to list all subcategories of a parent category, so used:
$terms = get_terms(array('child_of'=>1));
but was returned an empty array, because posts only exist in the subcategories, and none directly in the parent category.
In this case, I could add the taxonomy parameter to fix it:
$terms = get_terms(array('child_of'=>1,'taxonomy'=>'category'))
But it would be nice if this bug can be resolved, given I reported it, along with a trivial one line fix, 3 years ago.
#5
@
8 months ago
- Milestone changed from Awaiting Review to 5.3
I've reproduced the inconsistency by writing a couple of tests.
IMO it's somewhat odd semantically that 'hide_empty' would return empty parents with non-empty children. But this is the historical behavior of hide_empty, so it should be matched when $taxonomies
is empty. So the fix looks correct.
set has_hierarchical_tax to true when querying all taxonomies