检查发布日期是否已超过两年

时间:2019-06-28 01:30:18

标签: php wordpress

使用此代码get_the_date();发布帖子时,我正在显示“日期”。

但是,如果帖子已超过两年,我不想显示日期

这是逻辑

if (get_the_date() < 2 years) {
    echo 'Do not display date';
} else {
    echo 'Display date';
}

1 个答案:

答案 0 :(得分:1)

这就是我所做的工作

if( strtotime( $post->post_date ) < strtotime('-2 years') ) {
    echo 'old posts';
} else {
    echo 'new posts';
}