wordpress教程:給部落格最新文章新增new標記

firedragonpzy發表於2012-08-08
在index.php裡找到包含<?php the_title(); ?>的地方,在後面加上如下程式碼:
<?php
$t1=$post->post_date;
$t2=date("Y-m-d H:i:s");
$diff=(strtotime($t2)-strtotime($t1))/3600;
if($diff<24){echo "<img src='http://www.gfeel.info/wp-content/uploads/2010/06/new.gif' alt=’24小時內最新’>";}?>

將圖片連結替換成自己要的,建議最好是傳到自己的部落格上之後,再使用絕對路徑。
插入的new標記,在文章釋出24小時之後就會消失。

摘自:[url]http://www.isongxia.com/adding-new.html[/url]

相關文章