get_registered_theme_feature
函数
get_registered_theme_feature ( $feature )
- 参数
-
-
(string)
$feature
The feature name. See add_theme_support() for the list of possible values.- Required: 是
-
(string)
- 返回值
-
- (array|null) The registration args, or null if the feature was not registered.
- 定义位置
-
-
wp-includes/theme.php
, line 3317
-
wp-includes/theme.php
- 引入
- 5.5.0
- 弃用
- –
获取一个主题功能的注册配置。
function get_registered_theme_feature( $feature ) { global $_wp_registered_theme_features; if ( ! is_array( $_wp_registered_theme_features ) ) { return null; } return isset( $_wp_registered_theme_features[ $feature ] ) ? $_wp_registered_theme_features[ $feature ] : null; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。