Advertisement
Guest User

Criar usuario wordpress

a guest
Mar 14th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. //Criar usuario wordpress
  2.  
  3. function wpb_admin_account(){
  4. $user = 'Username';
  5. $pass = 'Password';
  6. $email = 'email@domain.com';
  7. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  8. $user_id = wp_create_user( $user, $pass, $email );
  9. $user = new WP_User( $user_id );
  10. $user->set_role( 'administrator' );
  11. } }
  12. add_action('init','wpb_admin_account');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement