Hi I'm using WP query like this: $posts_where = [ 'post_type' => 'page', 'posts_per_page' => - 1, ]; If there are search and status inputs I use those: $posts_where['s'] = $search; $posts_where['post_status'] = $status; And I add in meta queries based on input too if they exist: $posts_where['meta_query'][] = [ 'key' => 'content_variations', 'value' => '%', 'compare' => 'LIKE', ]; $posts_query = new \WP_Query($posts_where); $posts = $posts_query->posts; I want to change the search so that it will get posts where the value of $SEARCH can also match on post_name as well as title and content. I can see that the query that S makes is: AND (((wp_posts.post_title LIKE '%[SEARCH]%') OR (wp_posts.post_content LIKE '%[SEARCH]%')) is there a way in WP query (i.e. not just writing out the query) to add `OR (wp_posts.post_name LIKE '%[SEARCH]%')` to that?