• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
WordPress core a2z

WordPress core a2z

WordPress core only

  • Home
  • Plugins
  • Blocks
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / APIs / get_theme_support() – Gets the theme support arguments passed when registering that support

You appear to be a bot. Output may be restricted

Description

Gets the theme support arguments passed when registering that support.

Example usage:

  • get_theme_support( 'custom-logo' );
  • get_theme_support( 'custom-header', 'width' );

Usage

$mixed = get_theme_support( $feature, $args );

Parameters

$feature
( string ) required – The feature to check. See add_theme_support() for the list of possible values.
$args
( mixed ) optional –

Returns

mixed The array of extra arguments or the value for the registered feature.

Source

File name: wordpress/wp-includes/theme.php
Lines:

1 to 23 of 23
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 ];
  }
}
 

 View on GitHub View on Trac

Published: 25th November 2019 | Last updated: 25th November 2019

Primary Sidebar

Information

Function name: get_theme_support
Plugin ref: WordPress
Version: 5.6
Sourcefile: wp-includes/theme.php
File ref: wp-includes/theme.php
Deprecated?: No
API Letters: G,S,T

Footer

WP-a2z
WordPress core a2z
WordPress core only
WordPress 5.6
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  core.wp-a2z.org
© Copyright WP-a2z 2014-2021. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites