当前浏览:首页 / WordPress函数 / sanitize_post()

sanitize_post( object|WP_Post|array $post, string $context = 'display' )

清理每个文章字段

kses 清理

postmore...

sanitize 清理more...


描述

如果$context为“raw”(原始),则post对象或数组将对整数字段进行最小的清理。

另见


参数

$post

(object|WP_Post|array)(必填) post对象或数组

$context

(string)(可选) 如何清理文章字段。接受'raw'、'edit'、'db'、'display'、'attribute'或'js'。

默认值: 'display'


返回

(object|WP_Post|array) 现在已清理的文章对象或数组(与$post的类型相同)。



源码

查看源码 官方文档


更新日志

版本描述
2.3.0开始引入