Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function restrict_admin(){
- //if not administrator, kill WordPress execution and provide a message
- if( !current_user_can('administrator') ) {
- wp_die( __('You are not allowed to access this part of the site') );
- }
- }
- add_action( 'admin_init', 'restrict_admin', 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement