如果发布日期或修改日期大于或等于1年,则在发布页面上显示通知 时间:2022-01-04 作者:Marcus Wood 如果发布日期or 修改日期早于1年,如果是,请在帖子页面上显示消息。我已将代码添加到content-single.php 文件,但在检查发布和更新时间方面没有期望的结果。Example:if (strtotime($post->post_date) < strtotime(\'-1 year\')){ echo \'Old Post\'; } else { echo \'Not Old Post\'; } 有什么想法吗,因为我现在还不知道。。 1 个回复 最合适的回答,由SO网友:WPTricksDK 整理而成 现在你只是在检查发布日期。您还需要检查“post\\u modified”。您可以在此处找到完整的post对象:https://developer.wordpress.org/reference/functions/get_post/#user-contributed-notes您可以将支票修改为如下所示:if (strtotime($post->post_date) < strtotime(\'-1 year\') && strtorime($post->post_modified) < strtotime(\'-1 year\')){ echo \'Old Post\'; } else { echo \'Not Old Post\'; } 这两种情况都应该得到证实。 文章导航