คุณจะสั่งซื้อเมตาแท็กที่เพิ่มโดย drupal_add_html_head () ได้อย่างไร
ฉันกำลังเพิ่มการสนับสนุน Open Graph ในไซต์ Drupal และฉันมีการโทรเป็นจำนวนมาก 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)), ), ); …