10 lines
357 B
PHP
10 lines
357 B
PHP
<?php
|
|
|
|
function tg_include_custom_post_types_in_search_results($query)
|
|
{
|
|
if ($query->is_main_query() && $query->is_search() && !is_admin()) {
|
|
$query->set('post_type', array('post', 'brochures', 'questions', 'conseils', 'page', 'news', 'jobs', 'fiches-infos'));
|
|
}
|
|
}
|
|
add_action('pre_get_posts', 'tg_include_custom_post_types_in_search_results');
|