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:2895wp_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 ); return sprintf( "<script%s></script>\n", wp_sanitize_script_attributes( $attributes ) );} /** * Prints formatted `<script>` loader tag.Changelog
Introduced in 5.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 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.