apply_filters( 'wp_inline_script_attributes', array $attributes, string $data )
- Since
- 5.7.0
Filters attributes to be added to a script tag.
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. $datastring- Inline data.
Fired at · 1
wp-includes/script-loader.php:3027wp_get_inline_script_tag()
Source
* * @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. * @param string $data Inline data. */ $attributes = apply_filters( 'wp_inline_script_attributes', $attributes, $data ); return sprintf( "<script%s>%s</script>\n", wp_sanitize_script_attributes( $attributes ), $data );} /** * Prints an inline script tag.History
Introduced in 5.7.0. 2 changes between 6.7.7 and 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 source5.7.0
Introduced.from the docblock
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 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.