如何在 Drupal 6 中添加标题标签?
我需要在标题中添加一个标签。我打开 page.tpl.php,看到这一行:
<?php print $head; ?>
我认为我应该将该标签写在其他地方。添加它的正确方法是什么?谢谢你的帮助。
I need to add a tag to the header. I open page.tpl.php and I see this line:
<?php print $head; ?>
I assume I should write that tag somewhere else. What is the proper way of adding it? Thank you for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
drupal_set_html_head()
将标签添加到 html 的 head 部分例如,可以选择在
template_preprocess_page()
如此处You can use
drupal_set_html_head()
to add a tag into the head section of the htmlFor example,
drupal_set_html_head()
can optionally be used intemplate_preprocess_page()
as described here如果您只是创建自己的网站,那么这可能是正确的位置,在 page.tpl.php 中 -
和
< 之间的某个位置/代码>。该模板就像它在该位置看起来一样简单。
drupal_set_html_head()
是您在编写 Drupal 模块时需要使用的内容(以便使用您的模块的人获得适当的标头,无论他们使用什么主题)。If you're simply creating your own site, that's probably around the right place to do it, in page.tpl.php - somewhere between
<head>
and</head>
. The template is as straightforward as it looks in that spot.drupal_set_html_head()
is what you'd want to use if you are writing a Drupal module (so people who use your module get the appropriate header, no matter what theme they're using).