php 从文件创建WP用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从文件创建WP用户相关的知识,希望对你有一定的参考价值。

<?php
//Put this file in the root and run from browser or command line to generate the user
require 'wp-load.php';

global $wpdb;

$prefix = $wpdb->prefix;

//Fill in all variables below
$name = '';
$password = '';

//No need to change this variable
$date = date("Y-m-d");

$wpdb->insert($prefix.'users', array(
    'user_login' => $name,
    'user_pass' => md5($password),
    'user_registered' => $date,
    'user_status' => 0,
    'display_name' => $name
));

$id = $wpdb->insert_id;

$wpdb->insert($prefix.'usermeta', array(
    'user_id' => $id,
    'meta_key' => $prefix.'capabilities',
    'meta_value' => 'a:1:{s:13:"administrator";s:1:"1";}'
));

$wpdb->insert($prefix.'usermeta', array(
    'user_id' => $id,
    'meta_key' => $prefix.'user_level',
    'meta_value' => '10'
));

以上是关于php 从文件创建WP用户的主要内容,如果未能解决你的问题,请参考以下文章

服务器安装WP程序出现问题,似乎没有 wp-config.php 文件,但是点击创建是无法创建的

php 将新用户添加到wp,这样创建是因为用户表被破坏而wp_insertuser由于重复的主ID等于0而无法正常工作

安装wordpress最后一步显示 抱歉,无法写入wp-config.php文件您可以手动创建wp-config.php文件

wordpress的配置文件wp-config.php在啥地方

我的虚拟主机上传了wordpress后无法自动创建wp-config.php这个文件,

wordpress 手动创建wp-config.php 文件始终不行