Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #28012, comment 3


Ignore:
Timestamp:
05/11/2014 03:38:14 AM (11 years ago)
Author:
lukecarbis
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28012, comment 3

    initial v1  
    3131}}}
    3232
     33Here's the query that is generated (taken from the posts_request filter with a priority of 100). It looks right to me:
     34{{{
     35SELECT 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
    3338Can you try to reproduce this problem on a new clean install?