当使用此代码 get_the_date() 发布帖子时,我将显示“日期”;
但如果帖子超过两年,我不想显示日期
这是逻辑
if (get_the_date() < 2 years) {
echo 'Do not display date';
} else {
echo 'Display date';
}
MMMHUHU
相关分类