WordPress 常用函数 / current_theme_supports
简介
检查主题是否支持给定的功能。
用法
<?php current_theme_supports( $feature ); ?>
参数
$feature
(string) (required) 要添加的主题功能的名称。
目前主题支持的功能列表:
- 'post-formats'
- 'post-thumbnails'
- 'custom-background'
- 'custom-header'
- 'automatic-feed-links'
- 'menus'
Default: None
返回值
(bool)
如果有返回 true,否则返回 false。
实例
注解
使用全局数组标量: $_wp_theme_features
修改记录
Since: 2.9.0
源文件
wp-includes/theme.php