Redirect to first post if found only one relevant post in search

Marc0

Well-known member
Registered
Joined
Jun 6, 2012
Messages
890
Points
28
Let's start with a snippet that will automatically redirect the reader if you only find a related post while searching. Simply paste the following code in the file functions.php and that was it.

Code:
add_action ('template_redirect', 'redirect_single_post'); 
  function redirect_single_post () { 
      if (is_search ()) { 
          global $ wp_query; 
          if ($ wp_query-> post_count == 1) { 
              wp_redirect (get_permalink ($ wp_query-> posts ['0 '] -> ID)); 
          } 
      } 
  }
 
Older Threads
Replies
0
Views
1,840
Replies
1
Views
2,123
Replies
1
Views
3,750
Replies
11
Views
3,837
Newer Threads
Recommended Threads
Replies
5
Views
2,482
Replies
1
Views
2,123
Replies
20
Views
6,732
  • Locked
Replies
5
Views
4,159

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top