Shown icon if old 时间:2015-02-08 作者:Brittany Quake 我有这个密码<?php if( date(\'U\') - get_the_time(\'U\', $post->ID) < 24*60*60 ) : ?>New Post<?php endif; ?> 对于24小时以下的帖子,如果超过24小时,我想修改代码以显示旧帖子 1 个回复 最合适的回答,由SO网友:TheDeadMedic 整理而成 只需翻转“小于”< 至“大于”>:<?php if ( date( \'U\' ) - get_the_time( \'U\', $post->ID ) > DAY_IN_SECONDS ) : ?>Old Post<?php endif ?> http://codex.wordpress.org/Easier_Expression_of_Time_Constants 结束 文章导航