Opened 14 years ago
Closed 11 years ago
#15846 closed enhancement (worksforme)
Posts list associated to a term_taxonomy_id
Reported by: | _DorsVenabili | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.1 |
Component: | Taxonomy | Keywords: | |
Focuses: | Cc: |
Description (last modified by )
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:
function posts_of_a_term_id($term_id, $limit){ global $wpdb; $query = "SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id = $term_id ORDER BY object_id DESC LIMIT $limit"; $results = $wpdb->get_results($query); foreach($results as $result): $id = $result->object_id; query_posts('p='.$id.''); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endwhile; endif; wp_reset_query(); endforeach; }
Change History (10)
#1
@
14 years ago
- Milestone changed from Awaiting Review to Future Release
- Summary changed from Posts list associated to a term_id to Posts list associated to a term_taxonomy_id
#2
@
14 years ago
- Milestone Future Release deleted
- Resolution set to wontfix
- Status changed from new to closed
Going to close as worksforme because you can already use get_posts() to retrieve the list of posts associated to certain term and then you can use the loop like you did to display them however you want.
#3
@
14 years ago
- Cc raven@… added
- Keywords needs-docs added; term posts list associated removed
- Resolution wontfix deleted
- Status changed from closed to reopened
- Type changed from enhancement to task (blessed)
Then I think get_posts() needs a review and must be marked as needs-docs.
get_posts() have no documentation about it. I have not found how to get the posts of a taxonomy. I have used for this is get_objects_in_term(), still not documented.
#4
follow-up:
↓ 7
@
14 years ago
- Milestone set to Future Release
- Type changed from task (blessed) to enhancement
Please do not mark tickets as blessed tasks unless you're a lead developer.
get_posts() is just a wrapper for WP_Query. See Otto's post:
http://ottopress.com/2010/wordpress-3-1-advanced-taxonomy-queries/
Normally we would update the codex, except it's scheduled for demise.
#6
@
14 years ago
Normally we would update the codex, except it's scheduled for demise.
This is a potential long-term goal that will occur in phases, and may not result in it completely disappearing.
In short, I wouldn't discourage Codex edits. It isn't going anywhere for some time and will still need to be updated, across the board, for 3.1 API changes and additions.
#7
in reply to:
↑ 4
;
follow-up:
↓ 8
@
14 years ago
Replying to scribu:
Normally we would update the codex, except it's scheduled for demise.
Where can I get more info about that?
#8
in reply to:
↑ 7
@
14 years ago
Replying to SergeyBiryukov:
Where can I get more info about that?
For the record: I've found out that Codex may be eventually transformed into curated handbooks:
http://lists.automattic.com/pipermail/wp-docs/2009-January/001862.html
http://lists.automattic.com/pipermail/wp-docs/2009-August/002034.html
That actually makes sense and answers my question.
'term_taxonomy_id' is different from 'term_id'.