尝试在新的内容类型添加表单中添加一些额外的表单项。
也尝试增加提交和预览的权重。
function mymodule_form_alter(&$form, &$form_state, $form_id){
//add some $form items here
$form['actions']['submit']['#weight'] = 2000;
$form['actions']['preview']['#weight'] = 2001;
}
但不知何故,提交和预览按钮仍然位于那里添加的新项目上方。