get_theme_support( string $feature )

Gets the theme support arguments passed when registering that support


Parameters

$feature

(string) (Required) the feature to check


Return

(mixed) The array of extra arguments or the value for the registered feature.


Source

File: wp-includes/theme.php

function get_theme_support( $feature ) {
	global $_wp_theme_features;
	if ( ! isset( $_wp_theme_features[ $feature ] ) )
		return false;

	if ( func_num_args() <= 1 )
		return $_wp_theme_features[ $feature ];

	$args = array_slice( func_get_args(), 1 );
	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 ];
	}
}


Changelog

Changelog
Version Description
WP-3.1.0 Introduced.