This code snippet allows website owners to send users to a custom URL after they log out. Adjust Line 4 as desired.
add_action( 'wp_logout', 'wptu_redirect_after_logout' );
function wptu_redirect_after_logout() {
wp_redirect( 'https://domain.com/custom-url/' );
exit();
}