hi friends;
i just want to see pages for guest, logged users want to be redirect to their profile page...
i've created a code in the following way;
function redirect_to_user_url() {
wp_redirect(get_bloginfo('url') . '/author/');
}
this code "http://www.example.com/author/" redirecting address :/
i'm trying to do is;
http://www.example.com/author/metin-mete
http://www.example.com/author/user-1
http://www.example.com/author/user-1
http://www.example.com/author/user-1
as...
in this way, the logged in user's profile, how do i redirect?