Skip to content

Instantly share code, notes, and snippets.

@miziomon
Created May 15, 2015 12:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save miziomon/d476c3d864d09a828712 to your computer and use it in GitHub Desktop.
Save miziomon/d476c3d864d09a828712 to your computer and use it in GitHub Desktop.
WordPress user admin redirect
/**
*
* redirect to homepage if has non "edit_posts" capabilities
*/
add_filter("admin_init", function () {
if (!current_user_can('edit_posts')) {
wp_redirect(WP_HOME);
exit;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment