Opened 8 years ago
Last modified 5 years ago
#40638 new defect (bug)
In attachments taxonomy displays slug instead of name
Reported by: | snookerist | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 4.7.4 |
Component: | Media | Keywords: | has-patch |
Focuses: | Cc: |
Description
Hello!
Custom taxonomy registered for attachment displays as slug instead of name.
It would be much better if it will looks like this:
It is a only one thing to do. Replace string
$values[] = $term->slug;
to
$values[] = $term->name;
in file /wp-admin/includes/media.php at line number 1652.
Could you do this change and inlclude in one of the followings releases?
Thank you!
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
If we do so, we should probably patch the second appearance too.