Hello @govind,
You can redirect your user to the home page after they log out using the following lines of code.
Please follow the steps below to do that.
1. you need to edit the functions.php file of KLEO Child Theme which can be found >Dashboard>Appearance>Editor>functions.php.
2. Open functions.php of KLEO Child Theme and the following code
COPY CODE
add_action('wp_logout','redirectToHome');
function redirectToHome(){
wp_redirect( home_url() );
exit();
}
to that file and save it. Now go to your site and refresh the site and test it logging out. It should redirect to the home page after log out. Please let me know if this works for you.
Thanks,
Kamal
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution