Wordpress - 检查帖子是否有更新

dan*_*oli 3 php wordpress last-modified

如何在Wordpress中检查帖子是否已更新?

if (post_has_edit())
    the_modified_time();
else
    the_time();
Run Code Online (Sandbox Code Playgroud)

有没有这样的功能post_has_edit()

Max*_*ter 7

来自Wordpress文档:

如果尚未修改帖子或页面,则修改时间与创建时间相同.

所以你可以使用the_modified_time(),如果帖子没有被修改,它将返回创建时间.

要检查帖子是否已被修改,请检查是否the_modified_time() == the_time().

  • `the_modified_time()== the_time()`应该是`get_the_time()== get_the_modified_time()`. (2认同)