Replace login error hints on your child site.
Snippet Type
Execute on Child Sites
Snippet
function wp_no_wordpress_errors(){
return 'Someting went wrong!';
}
add_filter( 'login_errors', 'wp_no_wordpress_errors' );
Replace login error hints on your child site.
Snippet Type
Execute on Child Sites
Snippet
function wp_no_wordpress_errors(){
return 'Someting went wrong!';
}
add_filter( 'login_errors', 'wp_no_wordpress_errors' );
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.