我有这个代码来显示我的一些div一天,然后消失。
此代码要放置在functions.php
function post_from_today_class($class) {
//add .new-post-today to post_class() if newer than 24hrs
global $post;
if( date(\'U\') - get_the_time(\'U\', $post->ID) < 24*60*60 ) $class[] = \'new-post-today\';
return $class;
}
此代码将放在第页上。
<?php if( date(\'U\') - get_the_time(\'U\', $post->ID) < 24*60*60 ) : ?>
使用此代码,我的div将显示一天或两天。但是,我想问,如何让它显示更长的时间,如何让它出现1或2个月?
有什么建议或解决方案吗?