Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

wordpress theme my login redirect after login

function redirect_to_profile() {
    $who = strtolower(sanitize_user($_POST['log']));
    $redirect_to = get_option('home') . '/profile?' . $who;
    return $redirect_to;
}
add_filter('login_redirect', 'redirect_to_profile');
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #wordpress #theme #login #redirect #login
ADD COMMENT
Topic
Name
9+8 =