#19202 closed defect (bug) (invalid)
custom post types with has_archive return duplicate results in query_posts
| Reported by: | lukecarbis | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | 3.2.1 |
| Severity: | minor | Keywords: | needs-testing |
| Cc: | Focuses: |
Description
Custom post types with has_archive return duplicate results in query_posts.
For example, running this on an install with a custom post type of product, and product posts of pokemon blue, pokemon red, pokemon green:
query_posts( array( 'posts_per_page' => 10, 'post_type' => 'product', 's' => 'pokemon' ));
if ( have_posts() )
while ( have_posts() ) {
the_post();
echo the_title().'<br />';
}
This returns multiple pokemon blues and reds, and no pokemon greens.
Change History (2)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Assuming it was a code problem..