get_theme_support

函式
get_theme_support ( $feature, $args )
引數
  • (string) $feature The feature to check. See add_theme_support() for the list of possible values.
    Required:
  • (mixed) $args Optional extra arguments to be checked against certain features.
    Required:
返回值
  • (mixed) The array of extra arguments or the value for the registered feature.
定義位置
相關方法
add_theme_supportcurrent_theme_supportsremove_theme_support_remove_theme_supportget_theme_root
引入
3.1.0
棄用
-

get_theme_support: 這個函式用來檢索一個主題所支援的功能的資訊。它接受一個字串引數,指定要檢索的功能資訊。例如,”post-thumbnails”將檢索關於文章縮圖功能的資訊。

獲取註冊該支援時傳遞的主題支援引數。

使用例項:
get_theme_support( ‘custom-logo’ );
get_theme_support( ‘custom-header’, ‘width’ );

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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 ];
}
}
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 ]; } }
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 ];
	}
}

常見問題

FAQs
檢視更多 >