Drupal 显示节点的修改日期
Drupal 中是否有一种简单的方法可以将节点的最后修改日期显示为 node.tpl.php 文件的一部分?
Is there a simple way in Drupal to display the last modified date for a node as part of the node.tpl.php file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您将此代码放入 node.tpl.php 文件中,它将显示节点的最后更改日期:
以及您想要的任何 HTML。
If you put this code in the node.tpl.php file it will show the date of the last change to the node:
with whatever HTML you want around it.
您将获得时间戳,我认为可以更改为最新日期。
这里tpl文件中的$nid代表当前节点id,钩子node_load()加载与节点id相关的所有信息。
you will get the timestamp and i think that can be changed to date.
Here $nid in tpl file represent the current node id, and hook node_load() load the all information related to node id.
无需编辑node.tpl.php 文件。在 template.php 中使用以下内容。
No need to edit node.tpl.php file. Use the following in template.php.