
学习如何使用Sublime Text:快速概述
get_theme_support ( $feature, $args )
get_theme_support: 这个函数用来检索一个主题所支持的功能的信息。它接受一个字符串参数,指定要检索的功能信息。例如,”post-thumbnails”将检索关于文章缩略图功能的信息。
获取注册该支持时传递的主题支持参数。
使用实例:
get_theme_support( ‘custom-logo’ );
get_theme_support( ‘custom-header’, ‘width’ );
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 ]; } }