Skip to content

Instantly share code, notes, and snippets.

@michaeloeser
Created January 19, 2013 12:35
Show Gist options
  • Save michaeloeser/4572450 to your computer and use it in GitHub Desktop.
Save michaeloeser/4572450 to your computer and use it in GitHub Desktop.
Restrict Admin Area To Only Admin Users
<?php
function restrict_admin()
{
if ( ! current_user_can( 'manage_options' ) ) {
wp_redirect( site_url() );
exit;
}
}
add_action( 'admin_init', 'restrict_admin', 1 );
?>
@michaeloeser
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment