Created
December 11, 2015 15:36
-
-
Save blobaugh/2de6a1ae349e7f96e2fa to your computer and use it in GitHub Desktop.
Auto activate users on WordPress Multisite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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