您如何订购drupal_add_html_head()添加的元标记?
我正在向Drupal网站添加Open Graph支持,并且有很多drupal_add_html_head()调用,例如: $og_title = array( '#tag' => 'meta', '#attributes' => array( 'property' => 'og:title', 'content' => $node->title, ), ); drupal_add_html_head($og_title, 'zujava_og_title'); $og_url = array( '#tag' => 'meta', '#attributes' => array( 'property' => 'og:url', 'content' => url('node/' . $node->nid, array('absolute' => TRUE)), ), ); drupal_add_html_head($og_url, 'zujava_og_url'); 总共我有10个。它们似乎并没有按照被调用的顺序输出(都在单个函数中)。 我可以使用某种权重来设置订单吗?