get_stylesheet_directory_uri

Definition:
function get_stylesheet_directory_uri() {}

Retrieve stylesheet directory URI.

Defined filters

  • stylesheet_directory_uri
    apply_filters( 'stylesheet_directory_uri', $stylesheet_dir_uri, $stylesheet, $theme_root_uri )

Source code

function get_stylesheet_directory_uri() {

	$stylesheet = get_stylesheet();

	$theme_root_uri = get_theme_root_uri( $stylesheet );

	$stylesheet_dir_uri = "$theme_root_uri/$stylesheet";



	return apply_filters( 'stylesheet_directory_uri', $stylesheet_dir_uri, $stylesheet, $theme_root_uri );

}

1711

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: