add_cssclass

函数
add_cssclass ( $class_to_add, $classes )
参数
  • (string) $class_to_add The CSS class to add.
    Required:
  • (string) $classes The string to add the CSS class to.
    Required:
返回值
  • (string) The string with the CSS class added.
定义位置
相关方法
body_classadd_menu_classesaddslashes_gpcpost_classadd_posts_page
引入
2.7.0
弃用
-

add_cssclass: 这个过滤器用来为一个WordPress元素添加一个自定义的CSS类: 该函数有两个参数:默认类和当前项目。

为一个字符串添加一个CSS类。

function add_cssclass( $class_to_add, $classes ) {
	if ( empty( $classes ) ) {
		return $class_to_add;
	}

	return $classes . ' ' . $class_to_add;
}

常见问题

FAQs
查看更多 >