Redirecting email searches to the login page in Relevanssi

Redirecting email searches to the login page in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'template_redirect', 'rlv_redirect_emails' );
function rlv_redirect_emails() {
    if ( filter_var( get_search_query(), FILTER_VALIDATE_EMAIL ) ) {
        if ( wp_redirect( 'https://www.example.com/wp-login.php' ) ) {
            exit();
        }
    }
}
1 Like

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