답변:
시스템 모듈 디렉토리에서 기본 html.tpl.php를 복사해야합니다.
또는 기능 drupal_add_html_head
을 사용하여 새 헤드 태그를 재정의하거나 추가 할 수 있습니다 .
// First, we must set up an array
$element = array(
'#tag' => 'link', // The #tag is the html tag - <link />
'#attributes' => array( // Set up an array of attributes inside the tag
'href' => 'http://fonts.googleapis.com/css?family=Cardo&subset=latin',
'rel' => 'stylesheet',
'type' => 'text/css',
),
);
drupal_add_html_head($element, 'google_font_cardo');
헤드 태그를 변경하려면 html.tpl.php 를 사용해야 합니다.