wppaste
WordPress

apply_filters( 'wp_script_attributes', array $attributes )

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

Compatibility

WordPress
since 5.7.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

$attributesarray
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.

Where this hook fires · 1

  • wp-includes/script-loader.php:2941wp_get_script_tag()

Source code

	 * @since 5.7.0	 *	 * @param array $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.	 */	$attributes = apply_filters( 'wp_script_attributes', $attributes ); 	$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

Changelog

Introduced in 5.7.0. Unchanged from 6.7.7 through 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.

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 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.