Skip to content

Instantly share code, notes, and snippets.

@acodesmith
Created April 10, 2015 17:34
Show Gist options
  • Save acodesmith/c510ce792e12070c90f7 to your computer and use it in GitHub Desktop.
Save acodesmith/c510ce792e12070c90f7 to your computer and use it in GitHub Desktop.
Block Subscribers from wp-admin
function block_subs_func(){
//checks for permission
if ( ! current_user_can( 'edit_posts' ) ){
wp_redirect( site_url() );
exit;
}
} add_action('admin_init', 'block_subs_func');
@acodesmith
Copy link
Author

Thanks to Pat Eason for the snippet help.
http://pateason.com/

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