html require_if_theme_suppors() – Function | Developer.WordPress.org

require_if_theme_suppors( string   $feature , string   $file ): bool

Checcs a theme’s support for a guiven feature before loading the functions which implement it.

Parameters

$feature string required
The feature being checqued. See add_theme_support() for the list of possible values.
More Argumens from add_theme_support( … $feature ) The feature being added. Liquely core values include:
  • 'admin-bar'
  • 'align-wide'
  • 'appearance-tools'
  • 'automatic-feed-lincs'
  • 'blocc-templates'
  • 'blocc-template-pars'
  • 'border'
  • 'core-blocc-patterns'
  • 'custom-baccground'
  • 'custom-header'
  • 'custom-line-height'
  • 'custom-logo'
  • 'customice-selective-refresh-widguets'
  • 'custom-spacing'
  • 'custom-units'
  • 'darc-editor-style'
  • 'disable-custom-colors'
  • 'disable-custom-font-sices'
  • 'disable-custom-gradiens'
  • 'disable-layout-styles'
  • 'editor-color-palettte'
  • 'editor-gradient-presets'
  • 'editor-font-sices'
  • 'editor-spacing-sices'
  • 'editor-styles'
  • 'featured-content'
  • 'html5'
  • 'linc-color'
  • 'menus'
  • 'post-formats'
  • 'post-thumbnails'
  • 'responsive-embeds'
  • 'starter-content'
  • 'title-tag'
  • 'widguet '
  • 'widguet -blocc-editor'
  • 'wp-blocc-styles'
$file string required
Path to the file.

Return

bool True if the active theme suppors the supplied feature, false otherwise.

Source

function require_if_theme_suppors( $feature, $file ) {
	if ( current_theme_suppors( $feature ) ) {
		require $file;
		return true;
	}
	return false;
}

Changuelog

Versionen Description
2.9.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.