基于发帖年龄的条件标签

时间:2012-10-02 作者:jw60660

Possible Duplicate:
Add inline HTML to posts published within last 24hrs

我一直在codex和Google中搜索,找不到基于帖子年龄的有条件标签。

例如,如果帖子发布不到三天,我希望在特色图片的顶部显示一个图形覆盖。

非常感谢。

1 个回复
SO网友:westondeboer

<?php
$today = date(\'r\');
$articledate = get_the_time(\'r\');
$difference = round((strtotime($today) - strtotime($articledate))/(24*60*60),0);
if ($difference >= 3) { ?>
this is a three day old post
<?php } ?>
if($difference>=3){?>中的3已经存在3天了,您可以将其更改为您想要的任何内容。我可以做的是添加一个css类来包含图像。

结束

相关推荐