wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



require_if_theme_supports › WordPress Function

Seit2.9.0
Veraltetn/v
require_if_theme_supports ( $feature, $file )
Parameter: (2)
  • (string) $feature The feature being checked. See add_theme_support() for the list of possible values.
    Erforderlich: Ja
  • (string) $file Path to the file.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if the active theme supports the supplied feature, false otherwise.
Definiert in:
Codex:

Checks a theme's support for a given feature before loading the functions which implement it.



Quellcode

function require_if_theme_supports( $feature, $file ) {
	if ( current_theme_supports( $feature ) ) {
		require $file;
		return true;
	}
	return false;
}