wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_kses_post_deep › WordPress Function

Since4.4.2
已弃用n/a
wp_kses_post_deep ( $data )
参数:
  • (mixed) $data The array, object, or scalar value to inspect.
    Required: Yes
查看:
返回:
  • (mixed) The filtered content.
定义在:
文档:

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



源码

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