Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: stylesheet_uri

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
188  *
189  * @since 1.5.0
190  * @uses apply_filters() Calls 'stylesheet_uri' filter on stylesheet URI path and stylesheet directory URI.
191  *
192  * @return string
193  */
194 function get_stylesheet_uri() {
195      $stylesheet_dir_uri = get_stylesheet_directory_uri();
196      $stylesheet_uri = $stylesheet_dir_uri . '/style.css';
197      return apply_filters('stylesheet_uri', $stylesheet_uri, $stylesheet_dir_uri);
198 }
199
200 /**
201  * Retrieve localized stylesheet URI.
202  *
203  * The stylesheet directory for the localized stylesheet files are located, by
204  * default, in the base theme directory. The name of the locale file will be the
205  * locale followed by '.css'. If that does not exist, then the text direction
206  * stylesheet will be checked for existence, for example 'ltr.css'.