drupal7更改评论$创建的格式

发布于 2024-12-04 10:53:05 字数 358 浏览 6 评论 0原文

一段时间以来,我一直在尝试重新格式化对博客文章发表评论时头像下方显示的日期。

我找不到通过任何设置来完成此操作的方法,因此我已转向模板文件。更改原始博客文章的日期格式很容易,但是带有注释,没有将原始(unix)格式的日期保存的变量传递到模板中,因此我无法重新格式化并提取我想要的日期片段。

Zen 主题帮助说明说:

* - $created:评论发表时的格式化日期和时间 创建。

我想重新格式化它 Tue, 2011-09-13 11:57

分成两个单独的变量, 2011年9月13日 11:57

有什么想法吗?谢谢

I have been trying for some time now to reformat the date that appears below the avatar when a comment is made to a blog post.

I have found no way of doing it through any settings, so I have moved over to the template files. Changing the date format of the original blog post was easy, but with comments, no variable holding the date in raw (unix) format is passed in to the template, so I can't reformat and extract the pieces of the date that I want.

The Zen theme help note says:

* - $created: Formatted date and time for when the comment was
created.

I would like to reformat this from
Tue, 2011-09-13 11:57

Into two separate variables,
13 Sep, 2011
11:57

any idéas? Thanks

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

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

发布评论

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

评论(1

吻风 2024-12-11 10:53:05

在模板文件中,您应该有权访问 $node 变量,以便您可以执行以下操作:

echo date('j M, Y H:i', $node->created);

请参阅 PHP 日期页面 了解有关上面使用的格式字符串的信息。

In your template file you should have access to the $node variable so you can do something like this:

echo date('j M, Y H:i', $node->created);

See the PHP date page for information on the format string used above.

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