Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$days=3; | |
$today=date_i18n('U'); | |
$entry=get_the_time('U'); | |
$sa=date('U',($today - $entry))/86400; | |
if( $days > $sa ){ | |
echo "\n" . '<img src="' .get_bloginfo('template_directory'). '/images/new.gif' . '" />' . "\n"; | |
} | |
?> | |
/*$days=2;なら2日以内の更新記事にnew.gifを表示*/ |
Note
Description | 日数を指定してnewアイコンを加える |
---|---|
WordPress Ver. | 3.3.1 |
Via | 記事の投稿日を取得して好きな日数だけnewアイコンを表示しておく方法 |