Skip to content

Instantly share code, notes, and snippets.

@DimaMinka
Created September 3, 2018 06:55
Show Gist options
  • Save DimaMinka/daa6700144d7884ca1e32e280d160854 to your computer and use it in GitHub Desktop.
Save DimaMinka/daa6700144d7884ca1e32e280d160854 to your computer and use it in GitHub Desktop.
Disable email requirements on new WordPress user registration - register_new_user
<?php
add_filter( 'registration_errors', function( $errors ){ return new WP_Error(); }, 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment