wp_script_attributes

wp_script_attributes

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('wp_script_attributes') is found 1 times:

  • /wp-includes/script-loader.php line 2818
    	 * @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.