If you mean that the taxonomy field should appear as minimized by default, you can achieve this by doing hook_form_alter():
function yourModule_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'yourContentType_node_form') {
$form['taxonomy']['#collapsed'] = TRUE;
}
}
source
share