WordPressで新しい記事にclassをつける
WordPressでn日以内に投稿された新着記事に任意のclassをつける方法。
<?php
while( have_posts() ):
$days_ago = 5; // 5日以内の場合にクラスを追加する
$date_diff = date_diff( date_create( $post->post_date ), date_create( current_time( 'mysql' ) ) );
$is_new = ( $date_diff->format( '%a' ) <= $days_ago )? 'new': '';
?>
<a href="<?php the_permalink(); ?>" class="item <?= $is_new; ?>">
<picture class="photo">
<?php the_post_thumbnail('thumbnail'); ?>
</picture>
<div class="content">
<time class="time"><?php the_time('Y.m.d'); ?></time>
<div class="title"><?php the_title(); ?></div>
</div>
</a>
<?php
endwhile; ?>
このコードはChatGPTに教えてもらいました。
--
以上