WordPressのブログで新着記事の何日間かにNEW!などCSS調整した文字やNEW画像を表示するカスタマイズ。
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php
$days=3;
$today=date('U'); $entry=get_the_time('U');
$diff1=date('U',($today - $entry))/86400;
if ($days > $diff1) {
echo '<img src="http://www.*****.com/images/icon_new.gif" alt="New" />';
}
?>
days=3 ←ここに表示したい日数
echo '<img src="~/>'; ←~の部分に画像パスやテキスト文字など入力
■参考サイト
http://www.df-cue.com/wp/2009/11/30/newmark/
http://sunq.jp/style/archives/2009/02/18-102954

![tabi8_no10_main[1] tabi8_no10_main[1]](http://www.art-beaute.net/topics/wp-content/uploads/tabi8_no10_main1-150x150.jpg)







