wp_get_script_tag( array $attributes )

Formats <script> loader tags.


Description

It is possible to inject attributes in the <script> tag via the ‘wp_script_attributes’ filter.
Automatically injects type attribute if needed.


Parameters

$attributes

(Required) Key-value pairs representing <script> tag attributes.


Return

(string) String containing <script> opening and closing tags.


Source

File: wp-includes/script-loader.php

function wp_get_script_tag( $attributes ) {
	/**
	 * Filters attributes to be added to a script tag.
	 *
	 * @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 ) );
}


Changelog

Changelog
Version Description
5.7.0
CP-2.0.0 Remove JavaScript type declaration. Introduced. CP-2.0.0 Remove JavaScript type declaration.