首页 > 精品范文库 > 9号文库
WordPress显示当前文章分类的最新完整列表
编辑:风吟鸟唱 识别码:18-1042666 9号文库 发布时间: 2024-06-20 12:04:17 来源:网络

第一篇:WordPress显示当前文章分类的最新完整列表

下面是通知公告

    <?php

    query_posts('showposts=10&cat=17');

    ?>

    <?php if(have_posts()): while(have_posts()): the_post();?>

  • ”>

    <?php the_title();?>

    <?php the_time('m-d-y')?>

  • <?php endwhile;?>

    <?phpendif;?>

    下面是新闻动态

    <?php

    query_posts('showposts=10&cat=16');

    ?>

    <?php if(have_posts()): while(have_posts()): the_post();?>

  • ”>

    <?php the_title();?>

    <?php the_time('m-d-y')?>

  • <?php endwhile;?>

    <?phpendif;?>

<?php par_pagenavi();?>

WordPress显示当前文章分类的最新完整列表
TOP