如果你提供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' ); } } } } |
注:用户名、密码和邮箱,都需要使用英文引号括住。一旦创建了账号,即刻删除上面的代码,以防出现安全问题。