예제 #1
0
 function add_missed_values()
 {
     parent::add_missed_values();
     // add 'multiple' option to taxonomy field with checkbox_list type
     foreach ($this->_meta_box['fields'] as $key => $field) {
         if ('taxonomy' == $field['type'] && 'checkbox_list' == $field['options']['type']) {
             $this->_meta_box['fields'][$key]['multiple'] = true;
         }
     }
 }