wp_script_add_data( string $handle, string $key, mixed $value )

Add metadata to a script.


Description

Works only if the script has already been added.

Possible values for $key and $value: ‘conditional’ string Comments for IE 6, lte IE 7, etc.

See also


Parameters

$handle

(string) (Required) Name of the script.

$key

(string) (Required) Name of data point for which we're storing a value.

$value

(mixed) (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

Changelog
Version Description
WP-4.2.0 Introduced.