Skip to content

Instantly share code, notes, and snippets.

@atomjoy
Created September 15, 2024 13:04
Show Gist options
  • Save atomjoy/1f25bc842a12872822ae32e455dcb115 to your computer and use it in GitHub Desktop.
Save atomjoy/1f25bc842a12872822ae32e455dcb115 to your computer and use it in GitHub Desktop.
Search posts only fliter
<?php
// Search only in posts with wordpress ?s=
function search_filter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','search_filter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment