Definition:
function get_stylesheet_directory() {}
Retrieve stylesheet directory path for current theme.
Return values
returns:Path to current theme directory.
Defined filters
- stylesheet_directory
apply_filters( 'stylesheet_directory', $stylesheet_dir, $stylesheet, $theme_root )
Source code
function get_stylesheet_directory() {
$stylesheet = get_stylesheet();
$theme_root = get_theme_root( $stylesheet );
$stylesheet_dir = "$theme_root/$stylesheet";
return apply_filters( 'stylesheet_directory', $stylesheet_dir, $stylesheet, $theme_root );
}
1709

February 12, 2011 


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