Aurangajeb

programmatically set default role for new users

Jun 9th, 2022
1,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. ##################################
  2. //programmatically set default role for new users
  3. ##################################
  4. add_filter('pre_option_default_role', function($default_role){
  5.     return 'custom_role';
  6.     return $default_role; //
  7. });
Advertisement
Add Comment
Please, Sign In to add comment