Yanıtlar:
Varsayılan html.tpl.php dosyasını sistem modülü dizininden kopyalamanız gerekir.
Veya drupal_add_html_head
yeni kafa etiketini geçersiz kılmak veya eklemek için işlevi kullanabilirsiniz.
// 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');
Kafa etiketini değiştirmek istiyorsanız, html.tpl.php kullanmanız gerekir.