wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_sanitize_script_attributes › WordPress Function

Seit5.7.0
Veraltet7.0.0
wp_sanitize_script_attributes ( $attributes )
Parameter:
  • (array<string,string|bool>) $attributes Key-value pairs representing `&lt;script&gt;` tag attributes.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (string) String made of sanitized `<script>` tag attributes.
Definiert in:
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.


Quellcode

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