Drupal 7:使用 html.tpl.php 中的 CCK 字段作为每个条目的自定义页面标题

发布于 2024-10-25 03:41:35 字数 810 浏览 1 评论 0原文

我需要为每个页面提供自定义元标题。我找到了一个模块 http://drupal.org/project/page_title 但我无法为条目提供特定标题与此。

我为我的 CCK 创建了 MetaTitle 字段。然后我编辑了 html.tpl.php,如下所示,它没有采取任何行动。我是否以错误的方式调用我的 cck 字段? :/

/sites/all/themes/zen/html.tpl.php

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>>

<head profile="<?php print $grddl_profile; ?>">
  <?php print $head; ?>
  <title><?php print $node->field_meta_title[0]['view']; ?></title>
  <?php //print $head_title; I removed the line ?>

我错过了什么?帮忙点赞!!!多谢!

I need to give a custom meta title to each page. I found a module http://drupal.org/project/page_title but I cant give particular title to entry with that.

I created MetaTitle field for my CCK. then I edited html.tpl.php as below, and it doesn't take action. do I call my cck field wrong way? :/

/sites/all/themes/zen/html.tpl.php

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>"<?php print $rdf_namespaces; ?>>

<head profile="<?php print $grddl_profile; ?>">
  <?php print $head; ?>
  <title><?php print $node->field_meta_title[0]['view']; ?></title>
  <?php //print $head_title; I removed the line ?>

What am I missing? Appreciate helps!!! Thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

嗼ふ静 2024-11-01 03:41:35

我无法给您确切的答案,但我很确定您不想编辑 modules 文件夹中的任何内容来执行此操作。

您可能会发现执行此操作的位置就在您的主题中。确切的位置因主题而异,但您应该能够通过最少的搜索找到它。

I can't give you an exact answer, but I'm pretty sure you don't want to be editing anything in the modules folder to do this.

You'll probably find that the place to do this is in your theme. The exact location varies by theme, but you should be able to find it with a minimal amount of hunting.

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