Advertisement
GochiSiyan

disable wp admin

Mar 8th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. add_action( 'admin_init', 'redirect_non_users' );
  2. function redirect_non_users() {
  3. $user = wp_get_current_user();
  4. if ( array_intersect( ['author'], (array) $user->roles ) ) {
  5. wp_redirect( home_url() );
  6. exit;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement