Is there a way to limit search to post titles? I know I can modify query.php core file but there must be a way to do it with hooks right?
Thanks in advance!
Is there a way to limit search to post titles? I know I can modify query.php core file but there must be a way to do it with hooks right?
Thanks in advance!
You must be logged in to post a comment.
Here’s a filter that’ll do the trick. Drop it into your theme’s
functions.php
or a plugin.Most of the code is just copied from the
WP_Query
class, except with thepost_content LIKE
‘s removed.UPDATE: Removed deprecated
like_escape()
since 4.0