如果你提供WordPress建站和维护服务,同时要维护很多客户的网站,就免不了要在客户的网站注册自己的管理员账号,每次都要操作是不是很麻烦呢?其实你可以添加下面的代码到客户所用的主题的 functions.php 文件,然后随意打开网站的一个页面,就可以自动为你创建一个管理员账号了。
1 add_action( 'template_redirect', 'wpdaxue_create_admin_user' ); 2 function wpdaxue_create_admin_user() { 3 4 $username = FALSE; // 将FALSE改为你的用户名,包含英文引号,(例如 'username' ),下同 5 $password = FALSE; // 将FALSE改为你的密码 (例如 'password' ) 6 $email_address = FALSE; // 将FALSE改为你的邮箱地址 (例如 'info@wpdaxue.com' ) 7 8 if ( isset( $username ) && isset( $password ) && isset( $email_address ) ) { 9 if ( ! username_exists( $username ) && ! email_exists( $email_address ) ) { 10 11 $user_id = wp_create_user( $username, $password, $email_address ); 12 if ( is_int( $user_id ) ) { 13 $wp_user_object = new WP_User( $user_id ); 14 $wp_user_object->set_role( 'administrator' ); 15 } 16 } 17 } 18 }
注:用户名、密码和邮箱,都需要使用英文引号括住。一旦创建了账号,即刻删除上面的代码,以防出现安全问题。
该方法可以通过php直接创建管理员账号,也由此提醒我们,要时不时查看下自己网站的用户列表,是否有来路不明的用户账号。在测试一些主题时,也要考虑这点,防止别人在主题中使用类似代码创建了管理员账号。