wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi
get_theme_support › WordPress Function
Da3.1.0
Deprecaton/a
› get_theme_support ( $feature, $args )
Parametri: (2) |
|
Ritorna: |
|
Definito a: |
|
Codex: | |
ChangeLog: |
|
Gets the theme support arguments passed when registering that support.
Example usage: get_theme_support( 'custom-logo' ); get_theme_support( 'custom-header', 'width' );Funzioni correlate: add_theme_support, current_theme_supports, remove_theme_support, _remove_theme_support, get_theme_root
Sorgenti
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 ]; } }