We know that when a user successfully login a wordpress blog then wordpress display him 'dashboard' gradually. it is no a better system all the time. if you want you can redirect your user to home page after successfully login. for this you need copy bellow code:
after copy paste it your themes 'functions.php' file and save it. now if a user login your wordpress blog then wordpress automatically redirect your blogs home page against dashboard.
Thanks for reading my blog post.
/* redirect users to front page after login */PROBLEM COPY CODE? TRY HERE.
function redirect_to_front_page() {
global $redirect_to;
if (!isset($_GET['redirect_to'])) {
$redirect_to = get_option('siteurl');
}
}
add_action('login_form', 'redirect_to_front_page');
after copy paste it your themes 'functions.php' file and save it. now if a user login your wordpress blog then wordpress automatically redirect your blogs home page against dashboard.
Thanks for reading my blog post.
0 comments:
Post a Comment
Comments here