Открываем файл functions.php вашей темы и добавляем:
1 2 3 4 5 6 7 8 9 |
add_action('template_redirect', 'single_result'); function single_result() { if (is_search()) { global $wp_query; if ($wp_query->post_count == 1) { wp_redirect( get_permalink( $wp_query->posts['0']->ID ) ); } } } |
Добавить комментарий: