Advertisement
GochiSiyan

wp admin admin only

Jul 5th, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function restrict_admin(){
  2. //if not administrator, kill WordPress execution and provide a message
  3. if( !current_user_can('administrator') ) {
  4. wp_die( __('You are not allowed to access this part of the site') );
  5. }
  6. }
  7. add_action( 'admin_init', 'restrict_admin', 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement