Created
March 25, 2012 21:39
-
-
Save palimadra/2200019 to your computer and use it in GitHub Desktop.
WP-Redirect user after login
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Description: Redirect the user after logging in | |
# Author: Pali Madra | |
# URL: http://www.agilewebdev.com | |
# Created on: [2011-03-26] | |
# Revised on: [2011-03-26] | |
# Instructions: Add this to the functions.php file of your theme | |
<?php | |
function redirect_user_on_role() | |
{ | |
//retrieve current user info | |
global $current_user; | |
get_currentuserinfo(); | |
//If login user role is Subscriber | |
else if ($current_user->user_level == 0) | |
{ | |
wp_redirect( home_url() ); exit; | |
} | |
//If login user role is Contributor | |
else if ($current_user->user_level > 1) | |
{ | |
wp_redirect( home_url() ); exit; | |
} | |
//If login user role is Editor | |
else if ($current_user->user_level >8) | |
{ | |
wp_redirect( home_url() ); exit; | |
} | |
// For other rolse | |
else | |
{ | |
$redirect_to = 'http://google.com/'; | |
return $redirect_to; | |
} | |
} | |
add_action('admin_init','redirect_user_on_role'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment