wpseek.com
				A WordPress-centric search engine for devs and theme authors
			get_theme_support › WordPress Function
Since3.1.0
Deprecatedn/a
› get_theme_support ( $feature, $args )
| Parameters: (2) | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | |
| Change Log: | 
 | 
Gets the theme support arguments passed when registering that support.
Example usage: get_theme_support( 'custom-logo' ); get_theme_support( 'custom-header', 'width' );Related Functions: add_theme_support, current_theme_supports, remove_theme_support, _remove_theme_support, get_theme_root
	Source
function get_theme_support( $feature, ...$args ) {
	global $_wp_theme_features;
	if ( ! isset( $_wp_theme_features[ $feature ] ) ) {
		return false;
	}
	if ( ! $args ) {
		return $_wp_theme_features[ $feature ];
	}
	switch ( $feature ) {
		case 'custom-logo':
		case 'custom-header':
		case 'custom-background':
			if ( isset( $_wp_theme_features[ $feature ][0][ $args[0] ] ) ) {
				return $_wp_theme_features[ $feature ][0][ $args[0] ];
			}
			return false;
		default:
			return $_wp_theme_features[ $feature ];
	}
}