Auto-Redirect when WordPress Search Query Only Returns One Match

157

There are times when searching a WordPress blog, you only get one item in the result. Depending on how organized your site is, this should be the item the user was looking for anyways. One of our users asked if there was a way to redirect to the post if the search query results only one match. In this article, we are going to show you how to redirect users to the post when the search query only returns one match.

All you have to do is open your theme’s functions.php file and paste the following snippet.

  add_action('template_redirect', 'one_match_redirect');  function one_match_redirect() {      if (is_search()) {          global $wp_query;          if ($wp_query->post_count == 1) {              wp_redirect( get_permalink( $wp_query->posts['0']->ID ) );          }      }  }  

Now you must beware that some users will not expect this functionality. So it may freak them out.