wpseek.com
A WordPress-centric search engine for devs and theme authors



require_if_theme_supports › WordPress Function

Since2.9.0
Deprecatedn/a
require_if_theme_supports ( $feature, $file )
Parameters: (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
Returns:
  • (bool) True if the active theme supports the supplied feature, false otherwise.
Defined at:
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;
}