Definition:
function require_if_theme_supports( $feature, $include) {}
Checks a theme’s support for a given feature before loading the functions which implement it.
Parameters
- string $feature: the feature being checked
- string $include: the file containing the functions that implement the feature
Source code
function require_if_theme_supports( $feature, $include) { if ( current_theme_supports( $feature ) ) require ( $include ); }
2735
No comments yet... Be the first to leave a reply!