当前浏览:首页 / WordPress函数 / get_body_class()

get_body_class( string|string[] $class = '' )

检索body元素的类名数组

body

class


参数

$class

(string|string[])(可选) 要添加到类列表的以空格分隔的类名字符串或数组。

默认值: ''


返回

(string[]) 类名数组。



源码

查看源码 官方文档


更新日志

版本描述
2.8.0开始引入

使用示例

  • 示例1
    // If has "home" class in the body
    if (in_array('home', get_body_class())) {
        // Class is present
    } else {
        // Class is not present
    }