你可以创建一个新角色,比如staff
, 并将您想要的用户添加到该特定角色。然后将该角色与您选择的新功能联系起来,例如。access_staff
.
现在,您有了一个具有新功能的新角色,因此要限制对站点任何部分的访问,只需添加以下代码:
if ( is_user_logged_in() && current_user_can( \'access_staff\' ) ) {
// Section
} else {
// Let them know they don\'t have enough privileges or...
wp_redirect( wp_login_url( get_permalink() ) ); // Send them to the login page
}