This code will set the default title for all nodes to "Default title": function example_form_alter($form_id, &form) { switch ($form_id) { case 'node_type_form': $form['title']['#default_value'] = t('Default title'); break; } }