0

我是 Drupal 7 的新手。

我有不同的基本页面,我想使用元标记遍历每个页面:

<meta http-equiv="refresh" content="20; url=http://sitename/node/page2" />

第 2 页将具有元标记

<meta http-equiv="refresh" content="10; url=http://sitename/node/page3" />

我怎样才能做到这一点?我希望仅在基本页面上添加元标记

我尝试使用 TEMPLATEUSED_preprocess_html 添加元标记,但我已经意识到这是错误的,因为它不是动态的并且适用于每个页面。

4

2 回答 2

1

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:

<link href="http://fonts.googleapis.com/css?family=Cardo&amp;subset=latin" rel="stylesheet" type="text/css" />
于 2012-10-11T15:39:53.213 回答
1

这是一个古老的问题,但仍然没有更具体的回应。看来我们必须使用 preprocess_html 在 template.php 中添加一个 head 元素。$node 不可用(至少我无法从 template.php/preprocess_html 中访问它)但我可以使用 drupal_get_path_alias 获取路径,这是原始问题所要求的。

这是我的工作示例:

function THEMENAME_preprocess_html(&$variables) {
  if (drupal_get_path_alias() == "node/45") {
    $meta_refresh = array(
      '#type' => 'html_tag',
      '#tag' => 'meta', 
      '#attributes' => array( 
         'http-equiv' => 'refresh',
         'content' => '900, url=/node/45',
      ),
    );
    drupal_add_html_head($meta_refresh, 'meta_refresh');
  }
}

使用 case 语句可能更好地服务于 Warren 的两条路径。

于 2014-10-15T17:15:23.920 回答