wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_theme_support › WordPress Function
Seit3.1.0
Veraltetn/v
› get_theme_support ( $feature, $args )
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
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' );Ähnliche Funktionen: add_theme_support, current_theme_supports, remove_theme_support, _remove_theme_support, get_theme_root
Quellcode
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 ]; } }