使用此代码get_the_date();发布帖子时,我正在显示“日期”。
但是,如果帖子已超过两年,我不想显示日期
这是逻辑
if (get_the_date() < 2 years) {
echo 'Do not display date';
} else {
echo 'Display date';
}
答案 0 :(得分:1)
这就是我所做的工作
if( strtotime( $post->post_date ) < strtotime('-2 years') ) {
echo 'old posts';
} else {
echo 'new posts';
}