wp_filter_post_kses()

wp_filter_post_kses( string $data ) 清除帖子内容允许的HTML标记的内容。…

wp_filter_post_kses( string $data )

清除帖子内容允许的HTML标记的内容。
Sanitizes content for allowed HTML tags for post content.

目录锚点:#说明#参数#源码#笔记


说明(Description)

Post content是指“Post”类型的页面内容,而不是来自表单的$u Post数据。此函数需要斜杠数据。


参数(Parameters)

参数 类型 说明
$data (string) 将内容发布到筛选器,预期将用斜杠转义。

源码(Source)

/**
 * Sanitize content for allowed HTML tags for post content.
 *
 * Post content refers to the page contents of the 'post' type and not $_POST
 * data from forms.
 *
 * @since 2.0.0
 *
 * @param string $data Post content to filter, expected to be escaped with slashes
 * @return string Filtered post content with allowed HTML tags and attributes intact.
 */
function wp_filter_post_kses( $data ) {
	return addslashes( wp_kses( stripslashes( $data ), 'post' ) );
}
更新版本 源码位置 使用 被使用
2.0.0 wp-includes/kses.php 11 6

笔记(Notes)

传递给kses()的第二个参数与其文档不匹配:

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册