Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #56609, comment 4


Ignore:
Timestamp:
09/21/2022 03:11:23 AM (4 years ago)
Author:
dd32
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56609, comment 4

    initial v1  
    1717
    1818Looks like `post_title` isn't a valid WP_Query field, but `title` is, so I'm not sure how the tests in #36905 succeeded. See https://github.com/WordPress/wordpress-develop/pull/3300
     19
     20After the above PR, the query now includes the function name:
     21{{{
     22SELECT   wp_posts.ID
     23FROM wp_posts
     24WHERE 1=1  AND wp_posts.post_title = 'is_wp_error' AND wp_posts.post_type = 'wp-parser-function' AND ((wp_posts.post_status = 'publish' OR wp_posts.post_status = 'future'....
     25}}}