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



wp_kses_post_deep › WordPress Function

Da4.4.2
Deprecaton/a
wp_kses_post_deep ( $data )
Parametri:
  • (mixed) $data The array, object, or scalar value to inspect.
    Richiesto:
Vedi:
Ritorna:
  • (mixed) The filtered content.
Definito a:
Codex:

Navigates through an array, object, or scalar, and sanitizes content for allowed HTML tags for post content.



Sorgenti

function wp_kses_post_deep( $data ) {
	return map_deep( $data, 'wp_kses_post' );
}