diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 80f48d43a5..741e29ac18 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -3525,14 +3525,6 @@ function _wp_theme_json_webfonts_handler() { $src = ''; foreach ( $value as $item ) { - - if ( - str_starts_with( $item['url'], site_url() ) || - str_starts_with( $item['url'], home_url() ) - ) { - $item['url'] = wp_make_link_relative( $item['url'] ); - } - $src .= ( 'data' === $item['format'] ) ? ", url({$item['url']})" : ", url('{$item['url']}') format('{$item['format']}')"; diff --git a/wp-includes/version.php b/wp-includes/version.php index cbf35e4d80..44dccbb652 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56138'; +$wp_version = '6.3-beta3-56139'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.