Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: stylesheet_directory

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
142  * @uses apply_filters() Calls 'stylesheet_directory' filter on stylesheet directory and theme name.
143  *
144  * @return string Path to current theme directory.
145  */
146 function get_stylesheet_directory() {
147      $stylesheet = get_stylesheet();
148      $theme_root = get_theme_root( $stylesheet );
149      $stylesheet_dir = "$theme_root/$stylesheet";
150
151      return apply_filters( 'stylesheet_directory', $stylesheet_dir, $stylesheet, $theme_root );
152 }
153
154 /**
155  * Retrieve stylesheet directory URI.
156  *
157  * @since 1.5.0
158  *
159  * @return string
160  */