Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created February 9, 2013 18:41
Show Gist options
  • Save fatihtoprak/4746512 to your computer and use it in GitHub Desktop.
Save fatihtoprak/4746512 to your computer and use it in GitHub Desktop.
<?php
//redirect subscribers to the home url
add_action( 'admin_init', 'custom_profile_redirect', 12 );
function custom_profile_redirect() {
global $current_user;
get_currentuserinfo();
if ($current_user->user_level == 0)
{
wp_redirect( home_url() ); exit;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment