新規投稿記事にNEWマークを表示させる[wordpress]
下記は詳細ページのタイトルにNEWマークを付ける wordpressのpage.phpを編集する。<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>下に変更
<h2><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" />' } ?></h2>img srcの部分はNEWマークがある場所を記入する