wp_style_add_data

函数
wp_style_add_data ( $handle, $key, $value )
参数
  • (string) $handle Name of the stylesheet.
    Required:
  • (string) $key Name of data point for which we're storing a value. Accepts 'conditional', 'rtl' and 'suffix', 'alt', 'title' and 'path'.
    Required:
  • (mixed) $value String containing the CSS data to be added.
    Required:
返回值
  • (bool) True on success, false on failure.
相关
  • WP_Dependencies::add_data()
定义位置
相关方法
wp_script_add_datawp_kses_datawp_style_loader_srcwp_style_iswp_get_update_data
引入
3.6.0
弃用
-

wp_style_add_data。它向一个样式表添加数据: 该函数以注释的形式向样式表添加数据。这些数据可以用来识别样式表,或用于任何其他目的。

添加元数据到一个CSS样式表。

只有在样式表已经被注册的情况下才有效。

$key和$value的可能值。
‘conditional’ string 对IE6,lte IE7等的注释。
‘rtl’ bool|string 声明一个RTL样式表。
‘suffix’ string 可选的后缀,与RTL结合使用。
‘alt’ bool 用于rel=”替代样式表”。
‘title’ 字符串 用于首选/备用样式表。
‘path’ string 样式表的绝对路径: 当’path”被设置时,样式表将被内联加载。

function wp_style_add_data( $handle, $key, $value ) {
	return wp_styles()->add_data( $handle, $key, $value );
}

常见问题

FAQs
查看更多 >