Make WordPress Core

Changes between Initial Version and Version 9 of Ticket #15846


Ignore:
Timestamp:
08/12/2013 04:49:45 AM (11 years ago)
Author:
wonderboymusic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #15846

    • Property Status changed from new to reopened
    • Property Cc raven@… added
    • Property Summary changed from Posts list associated to a term_id to Posts list associated to a term_taxonomy_id
    • Property Milestone changed from Awaiting Review to Future Release
    • Property Keywords needs-docs added; term posts list associated removed
  • Ticket #15846 – Description

    initial v9  
    11It 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:
    22
     3{{{
    34function posts_of_a_term_id($term_id, $limit){
    45        global $wpdb;
     
    2021        endforeach;
    2122}
     23}}}