カテゴリーの新着を表示する
2月 10, 2010 · Posted in WordPress
カテゴリーの新着を表示する
■query_posts(‘&posts_per_page=5&cat=7′);
・posts_per_page=表示件数
・cat=7=カテゴリーID
PHP
<?php query_posts('&posts_per_page=5&cat=7'); ?>
<ul>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><?php the_time('Y/m/d'); ?> <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; else: ?>
<li><?php _e('Sorry, no posts matched your criteria.'); ?></li>
<?php endif; ?>
</ul>

