Changes between Initial Version and Version 1 of Ticket #28012, comment 3
- Timestamp:
- 05/11/2014 03:38:14 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28012, comment 3
initial v1 31 31 }}} 32 32 33 Here's the query that is generated (taken from the posts_request filter with a priority of 100). It looks right to me: 34 {{{ 35 SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID IN (4,6,8,2) AND wp_posts.post_type = 'page' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'future' OR wp_posts.post_status = 'draft' OR wp_posts.post_status = 'pending' OR wp_posts.post_status = 'private') ORDER BY FIELD( wp_posts.ID, 4,6,8,2 ) LIMIT 0, 4 36 }}} 37 33 38 Can you try to reproduce this problem on a new clean install?