第一篇:WordPress显示当前文章分类的最新完整列表
下面是通知公告
- ”>
<?php the_title();?>
<?php the_time('m-d-y')?>
<?php
query_posts('showposts=10&cat=17');
?>
<?php if(have_posts()): while(have_posts()): the_post();?>
<?php endwhile;?>
<?phpendif;?>
- ”>
<?php the_title();?>
<?php the_time('m-d-y')?>
下面是新闻动态
<?php
query_posts('showposts=10&cat=16');
?>
<?php if(have_posts()): while(have_posts()): the_post();?>
<?php endwhile;?>
<?phpendif;?>
<?php par_pagenavi();?>