Definition:
function get_stylesheet() {}
Retrieve name of the current stylesheet.
The theme name that the administrator has currently set the front end theme as.
Return values
returns:Stylesheet name.
Defined filters
- stylesheet
apply_filters('stylesheet', get_option('stylesheet')
Source code
function get_stylesheet() {
return apply_filters('stylesheet', get_option('stylesheet'));
}
1707

February 12, 2011 


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