wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



require_if_theme_supports › WordPress Function

Depuis2.9.0
Dépréciéen/a
require_if_theme_supports ( $feature, $file )
Paramètres: (2)
  • (string) $feature The feature being checked. See add_theme_support() for the list of possible values.
    Requis: Oui
  • (string) $file Path to the file.
    Requis: Oui
Retourne:
  • (bool) True if the active theme supports the supplied feature, false otherwise.
Défini(e) dans:
Codex:

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



Source

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