へっぽこSEが何となく作ってみたweblogを参考にさせていただき、以下をhome.phpに追加しました。
<ul>
<?php $myposts = get_posts(‘numberposts=5&orderby=post_date’); foreach($myposts as $post) : ?>
<li><?php echo date(“Y年m月d日”, strtotime($post->post_date)); ?> : <a href=”<?php the_permalink() ?>”><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
すると・・・↓のようにちゃんと、新着記事の一覧が5件表示されました。
そのほかに
とか
ページの新着5件を表示する
