如何在 Drupal 6 中添加标题标签?

发布于 2024-10-25 16:22:06 字数 143 浏览 4 评论 0原文

我需要在标题中添加一个标签。我打开 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞清仓 2024-11-01 16:22:06

您可以使用 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 html

For example, drupal_set_html_head() can optionally be used in template_preprocess_page() as described here

独闯女儿国 2024-11-01 16:22:06

如果您只是创建自己的网站,那么这可能是正确的位置,在 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文