如何在WordPress网站上显示最新帖子的日期? 时间:2017-05-05 作者:Mehdi 我想在我的网站主页上获取最新发布日期。在此代码中:the_modified_date(\'d F Y\'); 不同页面中的日期不同(例如第1、2页,…)。我想展示just 日期:latest post 已发布。谢谢 2 个回复 SO网友:Sapere Aude you can use get_the_date(\'d F Y\'); SO网友:birgire 上次发布的发布日期是:$last_post_date = get_lastpostdate( \'blog\', \'post\' ); 最后修改的发布日期为$last_post_modified = get_lastpostmodified( \'blog\', \'post\' ); 这里我们使用\'post\' 职位类型和\'blog\' 对于时区。查看上的文档get_lastpostdate 和get_lastpostmodified 了解更多信息。 文章导航