WordPressで特定のカテゴリーの最新記事を表示
WordPressで特定のカテゴリーの最新記事を表示するタグは以下の通り
<?php query_posts('showposts=1&cat=13'); while(have_posts()) : the_post(); ?> <div><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div> <div><?php the_content(); ?></div> <?php endwhile; ?>