Drupal - 显示块内节点的标题
我需要动态显示块内节点的标题。我本以为这很简单,但我尝试过的所有代码片段似乎都不起作用(例如 title; ?>
)
我已经检查并测试了 PHP 输入格式是否已打开并与其他 PHP 位和 bob 一起工作,一切似乎都正常。
有什么想法吗?
I'm needing to dynamically display the title of a node within a block. I would have thought this would be simple, but all the code snippets I've tried don't seem to work (e.g. <?php print $node->title; ?>
)
I've checked and tested that the PHP input format is on and working with other PHP bits and bobs, and everything seems OK.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 drupal_get_title()< /a> 用于获取当前页面的标题。
Use drupal_get_title() for getting the title of the current page.
我认为此链接可能会有所帮助:
http://www.g-loaded.eu/2009/05/07/drupal-tip-list-a-nodes-taxonomy-terms-inside-a-block/
基于此:
I thik this link might be of help:
http://www.g-loaded.eu/2009/05/07/drupal-tip-list-a-nodes-taxonomy-terms-inside-a-block/
Based on it:
还可以选择使用 Views 模块来实现此目的。
There is also the option to use the Views module for this.