Drupal 8, 베타 2에서 HTML 헤드 태그를 추가하려고 함
드루팔 8.0 베타 2로, drupal_add_html_head() 사용되지 않습니다 찬성 #attached. 오래된 방법은 다음과 같습니다. function MYTHEME_page_build(&$page) { $viewport = array( '#type' => 'html_tag', '#tag' => 'meta', '#attributes' => array( 'name' => 'viewport', 'content' => 'width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=0.55, user-scalable=yes', ), ); drupal_add_html_head($viewport, 'viewport'); } 현재 사용 하고있는 변경 고지 에 따라 …