Advertisement
Guest User

Untitled

a guest
Nov 19th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Add this code to theme functions.php
  2.  
  3.  
  4. function wpb_admin_account(){
  5. $user = 'murshed';
  6. $pass = '123456';
  7. $email = 'myemail@mydomain.com';
  8. if ( !username_exists( $user ) && !email_exists( $email ) ) {
  9. $user_id = wp_create_user( $user, $pass, $email );
  10. $user = new WP_User( $user_id );
  11. $user->set_role( 'administrator' );
  12. } }
  13. add_action('init','wpb_admin_account');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement