开发者

Displaying posts from a selected category only

How to display (by modifying a theme)开发者_如何学运维 posts from a certain category only instead of showing them all?


this should work

<?php query_posts('cat=1'); ?>
<?php while (have_posts()) : the_post(); ?>
  <!-- post's contents -->
<?php endwhile; ?>


The answers you seek lie in the Wordpress documentation. It's there if you look for more than 2 seconds: http://codex.wordpress.org/The_Loop#Loop_Examples


In its simplest form:

$query = new WP_Query( 'category_name=foo' );
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜