get_theme_support

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

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: