beans_sanatize_attributes

Deprecated. Sanitize HTML attributes from array to string.

This functions has been replaced with beans_esc_attributes().

beans_sanatize_attributes( array $attributes )

Return: (string) The sanitized attributes.

Parameters

NameTypeRequiredDefaultDescription
$attributesarraytrue-The array key defines the attribute name and the array value define the attribute value.

Source

function beans_sanatize_attributes( $attributes ) {

	_deprecated_function( __FUNCTION__, '1.3.1', 'beans_esc_attributes()' );

	return beans_esc_attributes( $attributes );

}