functions.phpに下記を追記します!
//新着アイコン表示
function new_icon_add($entry){
$days = 14; //アイコンを表示させる
$today = date_i18n('U');
$entry_date = strtotime($entry->post_modified);
$elapsed = ($today - $entry_date)/(24 * 60 * 60);
if($days > $elapsed){
echo '<img src="' .get_bloginfo('template_url'). '/img/icon_new.gif" alt="new" style="" />';
}
}
そして、
あとは新着アイコンを表示したい場所に<?php new_icon_add($post); ?>と設置するだけ!!!
お試しを!