Opened 9 years ago
Last modified 3 weeks ago
#36641 new enhancement
WP_Term method __toString
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | |
Component: | Taxonomy | Keywords: | has-patch has-unit-tests |
Focuses: | Cc: |
Description
I think that this is good idea. For example:
<?php echo '<pre>'; var_dump(implode(', ', get_the_terms( get_the_ID(), 'category' ))); echo '</pre>'; ?>
I have string(**) "Cat 1, Cat 2"
Attachments (1)
Change History (6)
This ticket was mentioned in PR #8230 on WordPress/wordpress-develop by @sukhendu2002.
3 weeks ago
#5
- Keywords has-unit-tests added; needs-unit-tests needs-refresh removed
Note: See
TracTickets for help on using
tickets.
I guess I don't see any harm in adding this, though it's not something we offer elsewhere in WP (other than in
WP_Theme
).