diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 80d38d590b..17016fcaff 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3501,19 +3501,6 @@ function is_ssl() { return false; } -/** - * Determine if the scheme of the given URL is https. - * - * @since 4.0.0 - * - * @param string $url The URL. - * @return bool True if the given URL uses https, false if not (or if the URL - * is not valid). - */ -function is_https_url( $url ) { - return ( 'https' === parse_url( $url, PHP_URL_SCHEME ) ); -} - /** * Whether SSL login should be forced. *