- 2012-12-8
- 日常
テーマのindex.phpに下の分を入れたい位置に挿入する
<?php
$myposts = get_posts(‘numberposts=5&category=3’); // 件数&カテゴリIDを指定
foreach($myposts as $post) :
?>
<?php echo date(“Y年m月d日”, strtotime($post->post_date)); ?>
<a href=”<?php the_permalink(); ?>” id=”post-<?php the_ID(); ?>”><?php the_title(); ?></a>
<br />
<?php endforeach; ?>
<?php /* ▲更新情報ここまで */ ?>