Hi @whdsolutions,
Here is a piece of code that you can just copy and paste in your child theme’s functions.php file and it will redirect you to the desired page which is the homepage.
You can find more filters for Login Logout Menus [ Helping Link ]
/**
* Filter to redirect a user to a specific page after logout.
* @return [URL] logout URL with page slug on which it will be redirected after logout
*/
add_filter( 'login_logout_menu_logout', 'loginpress_login_menu_logout_redirect' );
function loginpress_login_menu_logout_redirect() {
return wp_logout_url( '/' );
}
Let me know if this works for you.
Thank You.
Login Logout Menu Filters – LoginPress
https://loginpress.pro