Skip to content

Instantly share code, notes, and snippets.

@blobaugh
Created December 11, 2015 15:36
Show Gist options
  • Select an option

  • Save blobaugh/2de6a1ae349e7f96e2fa to your computer and use it in GitHub Desktop.

Select an option

Save blobaugh/2de6a1ae349e7f96e2fa to your computer and use it in GitHub Desktop.
Auto activate users on WordPress Multisite
<?php
add_filter('wpmu_signup_user_notification', 'auto_activate_users', 10, 4);
function auto_activate_users($user, $user_email, $key, $meta){
wpmu_activate_signup($key);
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment