wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



filter_block_kses_value › WordPress Function

Da5.3.1
Deprecaton/a
filter_block_kses_value ( $value, $allowed_html, $allowed_protocols = array() )
Parametri: (3)
  • (string[]|string) $value The attribute value to filter.
    Richiesto:
  • (array[]|string) $allowed_html An array of allowed HTML elements and attributes, or a context name such as 'post'. See wp_kses_allowed_html() for the list of accepted context names.
    Richiesto:
  • (string[]) $allowed_protocols Optional. Array of allowed URL protocols. Defaults to the result of wp_allowed_protocols().
    Richiesto: No
    Default: array()
Ritorna:
  • (string[]|string) The filtered and sanitized result.
Definito a:
Codex:

Filters and sanitizes a parsed block attribute value to remove non-allowable HTML.



Sorgenti

function filter_block_kses_value( $value, $allowed_html, $allowed_protocols = array() ) {
	if ( is_array( $value ) ) {
		foreach ( $value as $key => $inner_value ) {
			$filtered_key   = filter_block_kses_value( $key, $allowed_html, $allowed_protocols );
			$filtered_value = filter_block_kses_value( $inner_value, $allowed_html, $allowed_protocols );

			if ( $filtered_key !== $key ) {
				unset( $value[ $key ] );
			}

			$value[ $filtered_key ] = $filtered_value;
		}
	} elseif ( is_string( $value ) ) {
		return wp_kses( $value, $allowed_html, $allowed_protocols );
	}

	return $value;
}