Procedure to add the PHP Code to return to the Home page when disconnecting.
Procedure with a Child Theme:
Child theme is recommended to keep the functionality when theme is updated
Select the “function.php” file
Edit file
Add the following to the code then, “Save changes”:
add_action('wp_logout','auto_redirect_after_logout'); function auto_redirect_after_logout(){ wp_safe_redirect( home_url() ); exit; }