Modify search for just title
Currently a simple search returns 364 results, and takes forever, because it is searching the description content.
Title should be enough.
I have tried editing the
WP query.php file in two places with no effects:
1.open
wp-includes/query.php
2.search for
$search .= "{$searchand}((post_title LIKE '{$n}{$term}{$n}') OR (post_content LIKE '{$n}{$term}{$n}'))";
3.remove the OR part.
to be specific
$search .= "{$searchand}((post_title LIKE '{$n}{$term}{$n}'))";