VK Filter Search Pro のご利用誠にありがとうございます。
株式会社ベクトルの平川です。
下記コードを使用してみてください。
function change_my_query( $where, $query ) {
if ( $query->is_search && $query->is_main_query() && ! $query->is_admin() ) {
$where = preg_replace( "/OR \(wp_posts\.post_content LIKE '[\s\S]*'\)/", '', $where );
$where = preg_replace( "/OR \(wp_posts\.post_excerpt LIKE '[\s\S]*'\)/", '', $where );
}
return $where;
}
add_filter('posts_where', 'change_my_query', 10, 2 );
VK Filter Search ( Pro ) はあくまで WordPress の検索の幅を効かせるための補助ツールのような位置づけで、検索システム自体は WordPress のものを使用しています。
なので、今回も「WordPress 検索 タイトルのみ」で検索した中でしっくり来たものをアレンジして載せています。
アレンジ元は下記です。
https://mycus-tom.com/posts/31
以上よろしくお願いします。