Drupal 7:使用 html.tpl.php 中的 CCK 字段作为每个条目的自定义页面标题
我需要为每个页面提供自定义元标题。我找到了一个模块 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法给您确切的答案,但我很确定您不想编辑
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.