Definition:
function remove_theme_support( $feature ) {}
Parameters
- string $feature: the feature being added
Return values
returns:Whether feature was removed.
Source code
function remove_theme_support( $feature ) {
// Blacklist: for internal registrations not used directly by themes.
if ( in_array( $feature, array( 'custom-background', 'custom-header', 'editor-style', 'widgets', 'menus' ) ) )
return false;
return _remove_theme_support( $feature );
}
2729

February 12, 2011 

