wppaste
WordPress

apply_filters( 'wp_inline_script_attributes', \array<string, , string $data )

Since
5.7.0
Filters attributes to be added to a script tag.

Parameters

\array<string,
string|bool&gt; $attributes Key-value pairs representing &lt;script&gt; tag attributes. Only the attribute name is added to the &lt;script&gt; tag for entries with a boolean value, and that are true.
$datastring
Inline data.

Fired at · 1

  • wp-includes/script-loader.php:3034wp_get_inline_script_tag()

Source

	 *	 * @param array<string, string|bool> $attributes Key-value pairs representing `<script>` tag attributes.	 *                                               Only the attribute name is added to the `<script>` tag for	 *                                               entries with a boolean value, and that are true.	 * @param string                     $data       Inline data.	 */	$attributes = apply_filters( 'wp_inline_script_attributes', $attributes, $data ); 	$processor = new WP_HTML_Tag_Processor( '<script></script>' );	$processor->next_tag();	foreach ( $attributes as $name => $value ) {		/*		 * Lexical variations of an attribute name may represent the

History

Introduced in 5.7.0. 2 changes between 6.7.7 and 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

7.0.4
Parameter `` added.verified against source
7.0.4
Parameter $attributes removed.verified against source
5.7.0
Introduced.from the docblock

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.