Changes between Initial Version and Version 9 of Ticket #15846
- Timestamp:
- 08/12/2013 04:49:45 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15846
-
Property
Status
changed from
new
toreopened
- Property Cc raven@… added
-
Property
Summary
changed from
Posts list associated to a term_id
toPosts list associated to a term_taxonomy_id
-
Property
Milestone
changed from
Awaiting Review
toFuture Release
- Property Keywords needs-docs added; term posts list associated removed
-
Property
Status
changed from
-
Ticket #15846 – Description
initial v9 1 1 It could be very useful to have in the core a function that retrieve the list of all the posts associated to a term id. I have written the follow one: 2 2 3 {{{ 3 4 function posts_of_a_term_id($term_id, $limit){ 4 5 global $wpdb; … … 20 21 endforeach; 21 22 } 23 }}}