- UI UX
記事に一定期間Newマークを表示

記事に一定期間Newマークを表示しよう!
目次
コードの書き方
<?php
$days = 7; //表示させる期間の日数
$published_time = get_post_time();
$today = wp_date('U');
$show_threshold = $today - $days * 86400;//24時間=86400秒
if($published_time > $show_threshold):
echo '<span class= "new">New</span>'; //表示させたいコード
endif;
?>
ー
-