wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_sanitize_script_attributes › WordPress Function

Since5.7.0
Deprecated7.0.0
wp_sanitize_script_attributes ( $attributes )
Parameters:
  • (array<string,string|bool>) $attributes Key-value pairs representing `&lt;script&gt;` tag attributes.
    Required: Yes
See:
Returns:
  • (string) String made of sanitized `<script>` tag attributes.
Defined at:
Codex:

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.


Source

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;
}