Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我仅将 wordpress 用于我网站上的博客部分。我想在我的主页上显示最近的帖子。我可以很好地显示它们,但日期显示为“1969 年 12 月 31 日”。Wordpress 将post_date列设置为datetime. 这是我在 PHP 中将其拉回的方法:
post_date
datetime
$date = $row['post_date']; $post_date = date("j/n/Y", strtotime($date));
这不是为我做的。有人可以帮我吗?
谢谢
你怎么称呼这些帖子?如果您使用的是 WP 循环,那么它们将作为对象而不是数组返回,因此您可以使用:
$post_date = date('j/n/Y', strtrotime($post->post_date));