@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

<?php // 新着記事に New マークを表示
	$days = 3; // New を表示させたい期間の日数
	$today = date_i18n('U'); // 現在の日付を取得
	$entry = get_the_time('U'); // 現在の投稿の時刻を取得
	$total = date('U',($today - $entry)) / 86400 ; // 秒数指定 86400 は1日
	if(  $days > $total ) {
		echo '<span class="new-mark">NEW</span>'; // Newを表示
	}
?>
