カテゴリと記事数の限定されたループを作る

Ads

Code

<?php
query_posts('showposts=5&category_name=foo');
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_content(); ?>
<?php
endwhile; else:
// No posts.
endif;
wp_reset_query();
?>
view raw gistfile1.aw hosted with ❤ by GitHub

Note

Description カテゴリや表示記事数を指定したループを作る。
query_posts(‘showposts=記事数&category_name=カテゴリのスラッグ名’)
WordPress Ver. 3.3.1
Via The Loop – WordPress Codex 日本語版