如何查看今天是否发布了帖子?

时间:2017-09-04 作者:Master

如果今天发布了帖子,如何显示内容?

像这样:

The Post. _new_  
The Post. _old_  

1 个回复
最合适的回答,由SO网友:Jacob Peattie 整理而成

您可以使用get_the_time() 获取当前帖子的日期。只需使用仅包含年份和日期的格式,并使用current_time() 具有相同格式的函数:

if ( get_the_time( \'Yd\' ) === current_time( \'Yd\' ) ) {
    // Post was published today.
}

结束