WP_Styles::_css_href()publicWP 2.6.0

Generates an enqueued style's fully-qualified URL.

Method of the class: WP_Styles{}

Hooks from the method

Return

String. Style's fully-qualified URL.

Usage

global $wp_styles;
$wp_styles->_css_href( $src, $ver, $handle );
$src(string) (required)
The source of the enqueued style.
$ver(string) (required)
The version of the enqueued style.
$handle(string) (required)
The style's registered handle.

Changelog

Since 2.6.0 Introduced.

WP_Styles::_css_href() code WP 6.5.2

public function _css_href( $src, $ver, $handle ) {
	if ( ! is_bool( $src ) && ! preg_match( '|^(https?:)?//|', $src ) && ! ( $this->content_url && str_starts_with( $src, $this->content_url ) ) ) {
		$src = $this->base_url . $src;
	}

	if ( ! empty( $ver ) ) {
		$src = add_query_arg( 'ver', $ver, $src );
	}

	/**
	 * Filters an enqueued style's fully-qualified URL.
	 *
	 * @since 2.6.0
	 *
	 * @param string $src    The source URL of the enqueued style.
	 * @param string $handle The style's registered handle.
	 */
	$src = apply_filters( 'style_loader_src', $src, $handle );
	return esc_url( $src );
}