mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
204 B
Text
12 lines
204 B
Text
if (!is_admin()) {
|
|
|
|
function keep_only_posts_in_search($query) {
|
|
if ($query->is_search) {
|
|
$query->set('post_type', 'post');
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
add_filter('pre_get_posts','keep_only_posts_in_search');
|
|
}
|