// WEITERLEITUNG ZU GOOGLE //
if ( ! function_exists( 'ah_redirect_after_login_errors' ) ) :
/**
* Redirect auf Google nach falscher Eingabe der WP-Zugangsdaten
*/
function ah_redirect_after_login_errors() {
wp_redirect( 'https://google.de' );
exit;
}
add_filter( 'login_errors', 'ah_redirect_after_login_errors' );
endif;