sanitize_category

函数
sanitize_category ( $category, $context = 'display' )
参数
  • (object|array) $category Category data.
    Required:
  • (string) $context Optional. Default 'display'.
    Required:
    Default: 'display'
返回值
  • (object|array) Same type as $category with sanitized data for safe use.
定义位置
相关方法
sanitize_category_fieldsanitize_termthe_categorysanitize_keysanitize_user
引入
2.3.0
弃用
-

sanitize_category: 这是一个WordPress的函数,用于净化一个类别对象。它用于验证和净化类别的数据,如名称和描述: 这个函数有一个参数,就是要净化的类别对象。

根据上下文对类别数据进行净化。

function sanitize_category( $category, $context = 'display' ) {
	return sanitize_term( $category, 'category', $context );
}

常见问题

FAQs
查看更多 >