Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_action( 'init', 'blockusers_init' );
  2. function blockusers_init() {
  3. if ( is_admin() && !current_user_can( 'author' ) && !( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
  4. wp_redirect( home_url() );exit;
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement