New Post bubble

时间:2018-12-11 作者:Jeff

我如何才能在上周的所有帖子中添加一个写着“新内容”的气泡?我查看了所有可用的解决方案,但它们似乎只针对菜单项。

提前谢谢。

1 个回复
SO网友:Gazi

<?php if( date(\'U\') - get_the_time(\'U\', $post->ID) < 24*60*60 ) : ?>
<div class="bubble"><?php _e(\'NEW\', \'mytheme_name\'); ?></div>
<?php endif; ?>
上面的一个将显示24小时内发布的每个帖子的新div。您只需在posts循环中的任意位置添加。

您可以使用7 * 24 * 60 * 60 每周一次。关于php时间的更多信息是here.