欢迎光临
我们一直在努力

自动创建WordPress管理员账号

建站超值云服务器,限时71元/月

如果你提供WordPress建站和维护服务,同时要维护很多客户的网站,就免不了要在客户的网站注册自己的管理员账号,每次都要操作是不是很麻烦呢?其实你可以添加下面的代码到客户所用的主题的 functions.php 文件,然后随意打开网站的一个页面,就可以自动为你创建一个管理员账号了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * 快速创建管理员账号
 * https://www.wpdaxue.com/create-admin-user-wordpress.html
 */
add_action( 'template_redirect', 'wpdaxue_create_admin_user' );
function wpdaxue_create_admin_user() {
 
	$username = FALSE; // 将FALSE改为你的用户名,包含英文引号,(例如 'username' ),下同
	$password = FALSE; // 将FALSE改为你的密码 (例如 'password' )
	$email_address = FALSE; // 将FALSE改为你的邮箱地址 (例如 'info@wpdaxue.com' )
 
	if ( isset( $username ) && isset( $password ) && isset( $email_address ) ) {
		if ( ! username_exists( $username ) && ! email_exists( $email_address ) ) {
 
			$user_id = wp_create_user( $username, $password, $email_address );
			if ( is_int( $user_id ) ) {
				$wp_user_object = new WP_User( $user_id );
				$wp_user_object->set_role( 'administrator' );
			}
		}
	}
}

/** * 快速创建管理员账号 * https://www.wpdaxue.com/create-admin-user-wordpress.html */ add_action( ‘template_redirect’, ‘wpdaxue_create_admin_user’ ); function wpdaxue_create_admin_user() { $username = FALSE; // 将FALSE改为你的用户名,包含英文引号,(例如 ‘username’ ),下同 $password = FALSE; // 将FALSE改为你的密码 (例如 ‘password’ ) $email_address = FALSE; // 将FALSE改为你的邮箱地址 (例如 ‘info@wpdaxue.com’ ) if ( isset( $username ) && isset( $password ) && isset( $email_address ) ) { if ( ! username_exists( $username ) && ! email_exists( $email_address ) ) { $user_id = wp_create_user( $username, $password, $email_address ); if ( is_int( $user_id ) ) { $wp_user_object = new WP_User( $user_id ); $wp_user_object->set_role( ‘administrator’ ); } } } }

注:用户名、密码和邮箱,都需要使用英文引号括住。一旦创建了账号,即刻删除上面的代码,以防出现安全问题。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 自动创建WordPress管理员账号
分享到: 更多 (0)