wp_script_add_data

Advertisement

Summery Summery

Add metadata to a script.

Syntax Syntax

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

Description 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.

Parameters 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 Return

(bool) True on success, false on failure.

Source Source

File: wp-includes/functions.wp-scripts.php

	_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );

	return (bool) wp_scripts()->query( $handle, $list );

Advertisement

Changelog Changelog

Changelog
Version Description
4.2.0 Introduced.

See also See also

Advertisement

Leave a Reply