Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 drupal 站点中,我创建了 page--about-us.tpl.php 等页面。我需要 <meta name="title" content="ABOUT US">在页面中添加 metatg。有什么办法可以做到这一点
<meta name="title" content="ABOUT US">
提前致谢
在 /themes/engines/xtemplate 中打开 xtemplate.engine
在将变量分配给模板的第 53 行附近,您将有一行以
“内容” =>
在该行上方,添加:
"nodewords" => (module_invoke("nodewords", "get", $node->nid)),
接下来,打开 xtemplate.xtmpl 并在头部区域添加一个标准的元关键字标签,其中 {nodeword} 是关键字通常所在的位置。