标签: php drupal drupal-7
$form = drupal_get_form('geography'); $form['input_latitude'] = array( '#type' => 'textfield', '#title' => t('Search address'), '#weight' => -10, );
我可以使用上面的代码在Drupal 7中插入一个新的自定义字段。但是,它将出现在地理表格的最底部。我怎样才能把它放在最顶端呢?注意:weight => -10不起作用。