Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Redirect back to homepage and not allow access to
  5. * WP admin for Subscribers.
  6. */
  7. function jay_redirect_admin(){
  8. if ( ! current_user_can( 'edit_posts' ) ){
  9. wp_redirect( site_url('/my-account') );
  10. exit;
  11. }
  12. }
  13. add_action( 'admin_init', 'jay_redirect_admin' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement