Auto-redirecting with one search result in Relevanssi

Auto-redirecting with one search result in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

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 ) );
            exit();
        }
    }
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.