wp_sanitize_script_attributes()WP 5.7.0

Deprecated since 7.0.0. It is no longer supported and may be removed in future releases. Use wp_get_script_tag() or wp_get_inline_script_tag() instead.

Sanitizes an attributes array into an attributes string to be placed inside a <script> tag.

This function is deprecated, use wp_get_script_tag() or wp_get_inline_script_tag() instead.

No Hooks.

Returns

String. String made of sanitized <script> tag attributes.

Usage

wp_sanitize_script_attributes( $attributes );
$attributes(required)
.

Notes

Changelog

Since 5.7.0 Introduced.
Deprecated since 7.0.0 Use wp_get_script_tag() or wp_get_inline_script_tag().

wp_sanitize_script_attributes() code WP 7.0

function wp_sanitize_script_attributes( $attributes ) {
	_deprecated_function( __FUNCTION__, '7.0.0', 'wp_get_script_tag() or wp_get_inline_script_tag()' );

	$attributes_string = '';
	foreach ( $attributes as $attribute_name => $attribute_value ) {
		if ( is_bool( $attribute_value ) ) {
			if ( $attribute_value ) {
				$attributes_string .= ' ' . esc_attr( $attribute_name );
			}
		} else {
			$attributes_string .= sprintf( ' %1$s="%2$s"', esc_attr( $attribute_name ), esc_attr( $attribute_value ) );
		}
	}
	return $attributes_string;
}