function custom_logout_redirect(){if (isset($_GET['action']) && $_GET['action']=='logout'){// Perform the logout wp_logout();// Redirect to the home page wp_redirect(home_url(../../../../../../themes/hello-theme-child-master/));exit}}add_action('init','custom_logout_redirect');