taxonomy = $taxonomy; } /** * Get the object type for meta. * * @return string */ protected function get_meta_type() { return 'term'; } /** * Get the type for `register_rest_field`. * * @return string */ public function get_rest_field_type() { return 'post_tag' === $this->taxonomy ? 'tag' : $this->taxonomy; } }