Skip to content

Instantly share code, notes, and snippets.

@krmd
Created May 30, 2014 15:21
Show Gist options
  • Save krmd/d4c92a31688a5de98f20 to your computer and use it in GitHub Desktop.
Save krmd/d4c92a31688a5de98f20 to your computer and use it in GitHub Desktop.
WooTheme: Search Result Full Content
add_action('template_redirect', 'redirect_single_post');
function redirect_single_post() {
if (is_search()) {
global $wp_query;
if ($wp_query->post_count == 1 && $wp_query->max_num_pages == 1) {
wp_redirect( get_permalink( $wp_query->posts['0']->ID ) );
exit;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment