当使用此代码 get_the_date() 发布帖子时,我将显示“日期”;但如果帖子超过两年,我不想显示日期这是逻辑if (get_the_date() < 2 years) { echo 'Do not display date';} else { echo 'Display date';}
1 回答
MMMHUHU
TA贡献1834条经验 获得超8个赞
这是我所做的和工作的
if( strtotime( $post->post_date ) < strtotime('-2 years') ) {
echo 'old posts';
} else {
echo 'new posts';
}
- 1 回答
- 0 关注
- 139 浏览
添加回答
举报
0/150
提交
取消