wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_style_add_data › WordPress Function

Desde3.6.0
Obsoleton/a
wp_style_add_data ( $handle, $key, $value )
Parâmetros: (3)
  • (string) $handle Name of the stylesheet.
    Required: Yes
  • (string) $key Name of data point for which we're storing a value. Accepts 'conditional', 'rtl' and 'suffix', 'alt', 'title' and 'path'.
    Required: Yes
  • (mixed) $value String containing the CSS data to be added.
    Required: Yes
Ver:
  • WP_Dependencies::add_data()
Retorna:
  • (bool) True on success, false on failure.
Definido em:
Codex:
Log de mudanças:
  • 5.8.0

Adds metadata to a CSS stylesheet.

Works only if the stylesheet has already been registered. Possible values for $key and $value: 'conditional' string Comments for IE 6, lte IE 7 etc. 'rtl' bool|string To declare an RTL stylesheet. 'suffix' string Optional suffix, used in combination with RTL. 'alt' bool For rel="alternate stylesheet". 'title' string For preferred/alternate stylesheets. 'path' string The absolute path to a stylesheet. Stylesheet will load inline when 'path' is set.


Fonte

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