wp_print_script_tag()WP 5.7.0

Prints formatted <script> loader tag.

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

No Hooks.

Return

null. Nothing (null).

Usage

wp_print_script_tag( $attributes );
$attributes(array) (required)
Key-value pairs representing <script> tag attributes.

Changelog

Since 5.7.0 Introduced.

wp_print_script_tag() code WP 6.5.2

function wp_print_script_tag( $attributes ) {
	echo wp_get_script_tag( $attributes );
}