WordPress 技巧:如何显示特定分类下的日志
很多时候,我们想显示特定分类下的日志。代码如下:
<ul class="news">
<?php query_posts('cat=6&showposts=5'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
很多时候,我们想显示特定分类下的日志。代码如下:
<ul class="news">
<?php query_posts('cat=6&showposts=5'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>