wp_get_script_tag() WordPress Function

The wp_get_script_tag() function is used to get the script tag of a registered script.

wp_get_script_tag( array $attributes ) #

Formats 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.


Top ↑

Parameters

$attributes

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


Top ↑

Return

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


Top ↑

Source

File: wp-includes/script-loader.php

function wp_get_script_tag( $attributes ) {
	if ( ! isset( $attributes['type'] ) && ! is_admin() && ! current_theme_supports( 'html5', 'script' ) ) {
		$attributes['type'] = 'text/javascript';
	}
	/**
	 * 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 ) );
}


Top ↑

Changelog

Changelog
VersionDescription
5.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More