wpseek.com
WordPress开发者和主题制作者的搜索引擎



_wp_normalize_relative_css_links › WordPress Function

Since5.9.0
已弃用n/a
_wp_normalize_relative_css_links ( $css, $stylesheet_url )
访问:
  • private
参数: (2)
  • (string) $css The CSS to make URLs relative to the WordPress installation.
    Required: Yes
  • (string) $stylesheet_url The URL to the stylesheet.
    Required: Yes
返回:
  • (string) The CSS with URLs made relative to the WordPress installation.
定义在:
文档:

Makes URLs relative to the WordPress installation.



源码

function _wp_normalize_relative_css_links( $css, $stylesheet_url ) {
	return preg_replace_callback(
		'#(url\s*\(\s*[\'"]?\s*)([^\'"\)]+)#',
		static function ( $matches ) use ( $stylesheet_url ) {
			list( , $prefix, $url ) = $matches;

			// Short-circuit if the URL does not require normalization.
			if (
				str_starts_with( $url, 'http:' ) ||
				str_starts_with( $url, 'https:' ) ||
				str_starts_with( $url, '//' ) ||
				str_starts_with( $url, '#' ) ||
				str_starts_with( $url, 'data:' )
			) {
				return $matches[0];
			}

			// Build the absolute URL.
			$absolute_url = dirname( $stylesheet_url ) . '/' . $url;
			$absolute_url = str_replace( '/./', '/', $absolute_url );

			// Convert to URL related to the site root.
			$url = wp_make_link_relative( $absolute_url );

			return $prefix . $url;
		},
		$css
	);
}