如何在X天后更改(已发布帖子的)元值。?

时间:2011-08-10 作者:PrivateUser

我有一个自定义字段。我想在x天后更改该自定义字段的文本。

我想要这样的东西:

if ( published post is more than 90 days old ) {
    echo "your post is more than 90 days old"; 
}
else {
    echo "your post is less than 90 days old";
}
有人能帮我做到这一点吗?

谢谢

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

这种逻辑不需要使用元字段。

消息灵通的$post->post_date 发布帖子时保留。从中可以确定日期是否为90天:

$datetime = strtotime($post->post_date);
if( $datetime < ( time() - ( 60 * 60 * 24 * 90 ) ) ) {
    echo "> 90 days old"
} else {
    echo "< 90 days old"
}

结束