WordPress-特定のカテゴリーの最新5件リストと記事
なぜかいつも同じこと調べてる気がしてメモ(@_@。
しかも、違うカテゴリIDを指定して、「なぜ親カテゴリに子カテゴリが含まれないのか!?」を調べ続けていたorz
<?php $posts = get_posts('posts_per_page=5&category=5'); foreach($posts as $post): ?> <dt><?php echo date("Y年m月d日", strtotime($post->post_date)); ?></dt> <dd><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></dd> <?php endforeach; ?> </dl> <p><?php query_posts('cat=5&showposts=5'); if(have_posts()): while(have_posts()): the_post(); ?> <h2 class="page-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <?php global $more; $more = 0; the_content("続きを読む..."); ?> <?php endwhile; endif; ?>