wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_kses_post_deep › WordPress Function

Depuis4.4.2
Dépréciéen/a
wp_kses_post_deep ( $data )
Paramètres:
  • (mixed) $data The array, object, or scalar value to inspect.
    Requis: Oui
Voir:
Retourne:
  • (mixed) The filtered content.
Défini(e) dans:
Codex:

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



Source

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