We know that when a user successfully logout from a wordpress blog then
wordpress display him 'login page' gradually. it is no a better system
all the time. if you want you can redirect your user to home page after
successfully logout. for this you need copy bellow code:
after copy paste it your themes 'functions.php' file and save it. now if a user logout from your wordpress blog then wordpress automatically redirect your blogs home page.
Thanks for reading my blog post.
add_action('wp_logout','auto_redirect_after_logout');PROBLEM COPY CODE? TRY HERE.
function auto_redirect_after_logout(){
wp_redirect( home_url() );
exit();
}
after copy paste it your themes 'functions.php' file and save it. now if a user logout from your wordpress blog then wordpress automatically redirect your blogs home page.
Thanks for reading my blog post.
0 comments:
Post a Comment
Comments here