Create a new WordPress administrator via functions.php & FTP

functions.php
function wpb_admin_account(){
    $user = 'Username';
    $pass = 'Password';
    $email = 'name@domain.com';
    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' );
    } 
}
add_action('init','wpb_admin_account');

Previous Code

Add an additional custom checkbox in the WooCommerce checkout

Add an additional custom checkbox after the terms ...

Next Code

Change WordPress URL in Database with phpMyAdmin and SQL query

Replace WordPress old URL to new URL with SQL Quer ...

Leave a Reply

Your email address will not be published. Required fields are marked *

2 × two =

skype

Need Coding Help?

Connect Skype

ACF

Elementor

JavaScript

jQuery

Others

PHP

WooCommerce

WordPress

Add Custom element item in wp nav menu

Add Element on last item of wp nav menu ...

Remove Website field from WordPress comment & Change cookies remember text

Remove Website field from WordPress comment & Chan ...

WordPress category or taxonomy list

WordPress custom taxonomy term list with function ...

WordPress .htaccess code for redirect www to non www url

Remove www from url or redirect ...

WordPress Ajax Search without plugin [ Easy ]

WordPress Ajax Search without plugin. Fully custom ...

top