wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



taxonomy_meta_box_sanitize_cb_checkboxes › WordPress Function

Seit5.1.0
Veraltetn/v
taxonomy_meta_box_sanitize_cb_checkboxes ( $taxonomy, $terms )
Parameter: (2)
  • (string) $taxonomy The taxonomy name.
    Erforderlich: Ja
  • (array) $terms Raw term data from the 'tax_input' field.
    Erforderlich: Ja
Gibt zurück:
  • (int[]) Array of sanitized term IDs.
Definiert in:
Codex:

Sanitizes POST values from a checkbox taxonomy metabox.



Quellcode

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