Image Search not working with custom query
-
Starting a new thread about the same issue as discussed here: https://www.ads-software.com/support/topic/cant-search-through-media-library/page/2/
We’re using a similar query to exclude custom post types from site search results, but it breaks the media search in the Web Stories plugin:
function excludePostType($query) {
if (!$query->is_admin && $query->is_search) {
$query->set(‘post_type’, ‘post’);
}
return $query;
}
add_filter(‘pre_get_posts’,’excludePostType’);We’d like to keep this code in place (have not found a suitable alternative), so I’m wondering if you can advise how to alter it to ensure the media search still works? The thread linked above mentions something about the REST API but I’m not sure how to modify the query above to exclude REST API queries.
This is a conflict I’ve encountered before and have yet to find a good alternative to exclude custom post types, so I’m hoping we can figure out a way to modify the query instead to prevent the conflict.
Your help would be greatly appreciated!
- The topic ‘Image Search not working with custom query’ is closed to new replies.