wp_script_attributes filter-hookWP 5.7.0

Filters attributes to be added to a script tag.

Usage

add_filter( 'wp_script_attributes', 'wp_kama_script_attributes_filter' );

/**
 * Function for `wp_script_attributes` filter-hook.
 * 
 * @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.
 *
 * @return array
 */
function wp_kama_script_attributes_filter( $attributes ){

	// filter...
	return $attributes;
}
$attributes(array)
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.

Changelog

Since 5.7.0 Introduced.

Where the hook is called

wp_get_script_tag()
wp_script_attributes
wp-includes/script-loader.php 2815
$attributes = apply_filters( 'wp_script_attributes', $attributes );

Where the hook is used in WordPress

Usage not found.