Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/a0364ca192cc342c1821 to your computer and use it in GitHub Desktop.
Save JudeRosario/a0364ca192cc342c1821 to your computer and use it in GitHub Desktop.
Protected Content Email Verification
function send_email_verification( $user ) {
wp_new_user_notification( $user->ID );
return $form ;
}
add_action('ms_controller_frontend_register_user_complete','send_email_verification') ;
@JudeRosario
Copy link
Author

Just copy/paste the code into the functions.php file of your child theme or a site specific plugin if you use one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment