Definition:
function get_theme_support( $feature ) {}
Gets the theme support arguments passed when registering that support
Parameters
- string $feature: the feature to check
Return values
returns:The array of extra arguments
Source code
function get_theme_support( $feature ) {
global $_wp_theme_features;
if ( !isset( $_wp_theme_features[$feature] ) )
return false;
else
return $_wp_theme_features[$feature];
}
9704

February 24, 2011 


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