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

Sanitizes data in single category key field.


Parameters

$field string Required
Category key to sanitize.
$value mixed Required
Category value to sanitize.
$cat_id int Required
Category ID.
$context string Required
What filter to use, 'raw', 'display', etc.

Top ↑

Return

mixed Value after $value has been sanitized.


Top ↑

Source

File: wp-includes/category.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
2.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.