wp_script_add_data( string $handle, string $key, mixed $value )
Adds metadata to a script.
Description
Works only if the script has already been registered.
Possible values for $key and $value: ‘conditional’ string Comments for IE 6, lte IE 7, etc.
See also
Parameters
- $handle
-
(Required) Name of the script.
- $key
-
(Required) Name of data point for which we're storing a value.
- $value
-
(Required) String containing the data to be added.
Return
(bool) True on success, false on failure.
Source
File: wp-includes/functions.wp-scripts.php
function wp_script_add_data( $handle, $key, $value ){
return wp_scripts()->add_data( $handle, $key, $value );
}
Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |