确定原始帖子的日期/时间

发布于 2024-11-03 09:25:50 字数 208 浏览 1 评论 0 原文

有没有办法确定 WordPress 博客文章的原始日期/时间?

这篇博文为例。无法确定原始发布的日期/时间。但是,如果您留下评论,则会发布留下评论的日期/时间。

Is there a way to determine the original date/time of a Wordpress blog post?

Take for example this blog post. There is no way to determine the date/time of the original posting. However if you leave a comment then the date/time it was left is published.

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

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

发布评论

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

评论(2

最近可好 2024-11-10 09:25:50

这不是博客“帖子”,而是页面。它不共享发布日期,因为它是一个可以随时间变化的网页,而不是包含可能与单个时间点相关的信息的帖子。

That's not a blog "post", but a page. It doesn't share the date it was posted because it's meant to act as a web page that can change over time, not a post with information that may correlate to a single point in time.

执笔绘流年 2024-11-10 09:25:50

如果您询问如何在页面上显示日期/时间,这绝对是可能的。您可以使用以下代码来显示它。只需将此代码粘贴到主题的 page.php 文件中使用的循环中

<?php the_time('F jS, Y') ?>

即可按照您的意愿设置日期样式,请参阅此页面:http://codex.wordpress.org/Formatting_Date_and_Time

If you are asking how to show the date/time on a page, this is absolutely possible. You can use the following code to display it. Just paste this code in the loop that is used in the page.php file of your theme

<?php the_time('F jS, Y') ?>

In order to style the date as you wish, see this page: http://codex.wordpress.org/Formatting_Date_and_Time

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