Showing posts with label FTP. Show all posts
Showing posts with label FTP. Show all posts

Tuesday, July 11, 2023

How To create admin uses through FTP in Wordpress

 
add_action('init', 'zi_admin_account');
function zi_admin_account()
{
$user = 'acm'; // add your user name
$pass = '$$acm$$'; // add your password
$email = 'drcoders1@gmail.com'; // add your email address
if (!username_exists($user) && !email_exists($email)) 
{
$user_id = wp_create_user($user, $pass, $email);
$user = new WP_User($user_id);
$user->set_role('administrator');
}
}

1 hour Free Service for WordPress website :)

      1 hour Free Service for WordPress website :)