From d0f526b3f996ad05b388670614e7497bf9915030 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 2 Jan 2022 14:14:41 +0100 Subject: [PATCH] wp_guess_url is not in need of a fix - it uses SITE_URL --- src/wp-includes/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wp-includes/functions.php b/src/wp-includes/functions.php index 8720c02221e6e..2f762ddbb87e4 100644 --- a/src/wp-includes/functions.php +++ b/src/wp-includes/functions.php @@ -5986,7 +5986,6 @@ function wp_guess_url() { } $schema = is_ssl() ? 'https://' : 'http://'; // set_url_scheme() is not defined yet. $url = $schema . $_SERVER['HTTP_HOST'] . $path; - //$url = network_home_url( $path ); }