W3cubDocs

/WordPress

sanitize_category_field( string $field, mixed $value, int $cat_id, string $context ): mixed

Sanitizes data in single category key field.

Parameters

$fieldstringrequired
Category key to sanitize.
$valuemixedrequired
Category value to sanitize.
$cat_idintrequired
Category ID.
$contextstringrequired
What filter to use, 'raw', 'display', etc.

Return

mixed Value after $value has been sanitized.

Source

function sanitize_category_field( $field, $value, $cat_id, $context ) {
	return sanitize_term_field( $field, $value, $cat_id, 'category', $context );
}

Changelog

Version Description
2.3.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/sanitize_category_field