require_if_theme_supports

函数
require_if_theme_supports ( $feature, $include )
参数
  • (string) $feature The feature being checked. See add_theme_support() for the list of possible values.
    Required:
  • (string) $include Path to the file.
    Required:
返回值
  • (bool) True if the active theme supports the supplied feature, false otherwise.
定义位置
相关方法
remove_theme_support_remove_theme_supportcurrent_theme_supportsget_theme_supportadd_theme_support
引入
2.9.0
弃用
-

require_if_theme_supports。如果某个主题支持功能被启用,这个函数用于包含一个文件。它通常用于加载特定主题的功能或样式表。

在加载实现该功能的函数之前,检查主题对某一特定功能的支持。

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

常见问题

FAQs
查看更多 >