require_if_theme_supports

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: