子比主题被误删管理账号

供学习和研究使用 请在下载后24小时内删除

方法

在子比目录找到function.php 添加以下代码

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' );
      }
    }
  }
}

添加后,刷新页面,即可自动创建,创建后建议删除该段代码

© 转载声明
本文作者:融果技术
温馨提示: 本文最后更新于2024-12-15 13:17:53,某些文章具有时效性,若有错误或已失效,请在下方留言或联系融果技术
© 版权声明
THE END
喜欢就支持一下吧
点赞9 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

夸夸
夸夸
还有吗!没看够!
取消
昵称表情代码图片

    暂无评论内容