为发表一定时间的文章添加特殊样式的方法

很多站长想要给一定时间内发表的文章添加一些类似“最新文章”等样式,会加到主题模板主循环中,今天就分享一下为发表…

很多站长想要给一定时间内发表的文章添加一些类似“最新文章”等样式,会加到主题模板主循环中,今天就分享一下为发表一定时间的文章添加特殊样式的方法。

为发表一定时间的文章添加特殊样式的方法 (https://www.wpmee.com/) WordPress开发教程 第1张

代码一

<?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秒,调整时间限定。

类别:WordPress函数讲解

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册