Usa la proprietà #weight. Poiché drupal_get_html_head () utilizza drupal_render () per eseguire il rendering dei meta tag, #weight viene utilizzato per il rendering.
Uso il seguente codice per effettuare un test sul mio sito locale; è lo stesso codice che stai utilizzando, tranne per il fatto che non ha alcun riferimento all'oggetto nodo.
$og_title = array(
'#tag' => 'meta',
'#attributes' => array(
'property' => 'og:title',
'content' => "This is the title",
),
);
drupal_add_html_head($og_title, 'zujava_og_title');
$og_url = array(
'#tag' => 'meta',
'#attributes' => array(
'property' => 'og:url',
'content' => url('node/1', array('absolute' => TRUE)),
),
);
drupal_add_html_head($og_url, 'zujava_og_url');
dsm(drupal_get_html_head());
L'output che ho ottenuto è il seguente.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta property="og:url" content="http://tero.local/dr72/node/1" />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<meta property="og:title" content="This is the title" />
Come vedi, l'ultimo tag aggiunto è il primo ad apparire.
Quindi eseguo il seguente codice.
$og_title = array(
'#tag' => 'meta',
'#attributes' => array(
'property' => 'og:title',
'content' => "This is the title",
),
'#weight' => 10,
);
drupal_add_html_head($og_title, 'zujava_og_title');
$og_url = array(
'#tag' => 'meta',
'#attributes' => array(
'property' => 'og:url',
'content' => url('node/1', array('absolute' => TRUE)),
),
'#weight' => 200,
);
drupal_add_html_head($og_url, 'zujava_og_url');
dsm(drupal_get_html_head());
L'output che ho ottenuto è il seguente.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<meta property="og:title" content="This is the title" />
<meta property="og:url" content="http://tero.local/dr72/node/1" />
Come vedi, l'ordine dei meta tag è stato modificato; i meta tag aggiunti dal codice vengono visualizzati dopo i meta tag predefiniti aggiunti da Drupal.
_drupal_default_html_head () (la funzione che restituisce i meta tag predefiniti) utilizza #weight per il meta tag "Content-Type".
$elements['system_meta_content_type'] = array(
'#type' => 'html_tag',
'#tag' => 'meta',
'#attributes' => array(
'http-equiv' => 'Content-Type',
'content' => 'text/html; charset=utf-8',
),
// Security: This always has to be output first.
'#weight' => -1000,
);