taxonomy_meta_box_sanitize_cb_checkboxes( string $taxonomy, array $terms ): int[]

Sanitizes POST values from a checkbox taxonomy metabox.


Parameters

$taxonomy string Required
The taxonomy name.
$terms array Required
Raw term data from the 'tax_input' field.

Top ↑

Return

int[] Array of sanitized term IDs.


Top ↑

Source

File: wp-admin/includes/post.php. View all references

function taxonomy_meta_box_sanitize_cb_checkboxes( $taxonomy, $terms ) {
	return array_map( 'intval', $terms );
}

Top ↑

Changelog

Changelog
Version Description
5.1.0 Introduced.

Top ↑

User Contributed Notes

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