Changes between Initial Version and Version 1 of Ticket #56609, comment 4
- Timestamp:
- 09/21/2022 03:11:23 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #56609, comment 4
initial v1 17 17 18 18 Looks 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 20 After the above PR, the query now includes the function name: 21 {{{ 22 SELECT wp_posts.ID 23 FROM wp_posts 24 WHERE 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 }}}