Show category list in wordpress page
This entry was posted on Jun 11 2008
现在用Wordpress做KPC网站,会用到分类贴子列表调用,所以在网上查了一下,记录下来。
<?php $posts = get_posts( “category=2&numberposts=8″ ); ?>
<?php if( $posts ) : ?>
<ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<li>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
其中
<?php $posts = get_posts( “category=2&numberposts=8″ ); ?>
的category=2&numberposts=8分别是分类ID和调用条数。
