フロントページの説明とメタキーワードの設定方法を教えてください。記事にメタタグモジュールを使用していますが、フロントページでは機能しません。
パネルをフロントページとして使用しています。
私のウェブサイトはhttp://www.techiestuffs.comで、Drupal 7で実行されています。
フロントページのHTMLソースが表示されている場合は、次のHTMLのみが含まれています。
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" href="http://www.techiestuffs.com/sites/default/files/favicon.png" type="image/png"/>
<meta name="Generator" content="Drupal 7 (http://drupal.org)"/>
<title>TechieStuffs | Stuffs for Geeks</title>これらの関数をtemplate.phpに追加してみました。
function yourtheme_page_alter($page) {
  $meta_description = array(
    '#type' => 'html_tag',
    '#tag' => 'meta',
    '#attributes' => array(
    'name' => 'description',
    'content' =>  'Description about the site'
  ));
  $meta_keywords = array(
    '#type' => 'html_tag',
    '#tag' => 'meta',
    '#attributes' => array(
    'name' => 'keywords',
    'content' =>  'Some Keywords about the site'
  ));
  drupal_add_html_head($meta_description, 'meta_description');
  drupal_add_html_head($meta_keywords, 'meta_keywords');
}しかし、私のウェブサイトのソースコードで確認できるように、この関数は機能していないようです。
誰かがこれを解決する方法を知っていますか?