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。如果某個主題支援功能被啟用,這個函式用於包含一個檔案。它通常用於載入特定主題的功能或樣式表。

在載入實現該功能的函式之前,檢查主題對某一特定功能的支援。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function require_if_theme_supports( $feature, $include ) {
if ( current_theme_supports( $feature ) ) {
require $include;
return true;
}
return false;
}
function require_if_theme_supports( $feature, $include ) { if ( current_theme_supports( $feature ) ) { require $include; return true; } return false; }
function require_if_theme_supports( $feature, $include ) {
	if ( current_theme_supports( $feature ) ) {
		require $include;
		return true;
	}
	return false;
}

常見問題

FAQs
檢視更多 >