Opened 2 years ago
Closed 2 years ago
#15573 closed defect (bug) (fixed)
Post Count Links are Bogus When query_var = false
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.1 |
| Component: | Taxonomy | Version: | 3.0.1 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
If I call register_taxonomy() with $args = ('query_var' => FALSE) then the links listed in the post count column of the taxonomy editor don't work as expected. The links should not be displayed if they are defective like this.
Attachments (2)
Change History (9)
- Milestone changed from Awaiting Review to 3.1
- Owner set to scribu
- Status changed from new to accepted
- Resolution fixed deleted
- Status changed from closed to reopened
Just because it doesn't have a query var, doesn't make it not queryable. We have taxonomy and term query vars for that. You have to make a separate publicly queryable check.
Replying to nacin:
Just because it doesn't have a query var, doesn't make it not queryable. We have taxonomy and term query vars for that.
15573.diff does that.
You have to make a separate publicly queryable check.
The 'public' option reads: @TODO not implemented.
Hm...
The only way the columns would not be linked is with public=false and show_ui=true, which doesn't make much sense, but hey...

(In [16578]) Don't link post counts if taxonomy isn't queryable. Fixes #15573