0

在我的 drupal 站点中,我创建了 page--about-us.tpl.php 等页面。我需要 <meta name="title" content="ABOUT US">在页面中添加 metatg。有什么办法可以做到这一点

提前致谢

4

1 回答 1

0

在 /themes/engines/xtemplate 中打开 xtemplate.engine

在将变量分配给模板的第 53 行附近,您将有一行以

“内容” =>

在该行上方,添加:

"nodewords" => (module_invoke("nodewords", "get", $node->nid)),

接下来,打开 xtemplate.xtmpl 并在头部区域添加一个标准的元关键字标签,其中 {nodeword} 是关键字通常所在的位置。

于 2013-07-24T06:08:52.603 回答