Tagged Questions
0
votes
1answer
308 views
Can't place two custom post types into the Wordpress search query?
I placed the following code into my functions.php file:
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('topic', 'reply'));
};
return ...