mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
287 B
Text
10 lines
287 B
Text
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 ) );
|
|
exit();
|
|
}
|
|
}
|
|
}
|