Wordpress文章特殊格式的设置
Wordpress主题文章是可以在发布一段时间内设置不同的特殊格式的如:最新文章、最热文章等等格式,下面就让大家一起来看看实现它的代码是怎么样的吧:
代码一
<?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秒,调整时间限定。
0条评论