为发表一定时间的文章添加特殊样式的方法
很多站长想要给一定时间内发表的文章添加一些类似“最新文章”等样式,会加到主题模板主循环中,今天就分享一下为发表一定时间的文章添加特殊样式的方法。
代码一
<?php
$t1 = $post->post_date;
$t2 = date( “Y-m-d H:i:s” );
$t3 = ’24’;
$period = ( strtotime( $t2 )-strtotime( $t1 ) )/3600;
if ( $period < $t3 ) { ?>
一天之内
<?php } else { ?>
一天之外
<?php } ?>
其中的$t3 = ’24’,为限定24小时内,修改数字调整时间。
代码二
<?php
$period = current_time(‘timestamp’) – get_the_time(‘U’);
if ( $period <= 86400 ) { ?>
一天之内
<?php } else { ?>
一天之外
<?php } ?>
修改其中的86400秒,调整时间限定。