wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



require_if_theme_supports › WordPress Function

Desde2.9.0
Obsoleton/a
require_if_theme_supports ( $feature, $file )
Parâmetros: (2)
  • (string) $feature The feature being checked. See add_theme_support() for the list of possible values.
    Required: Yes
  • (string) $file Path to the file.
    Required: Yes
Retorna:
  • (bool) True if the active theme supports the supplied feature, false otherwise.
Definido em:
Codex:

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



Fonte

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