免费《新手做网站视频教程》,在线观看,如果你想从零开始自己做网站,点击开始吧!

WordPress获取指定分类下的所有文章

  1. 首页
  2. »
  3. 图文教程
  4. »
  5. WordPress建站教程
  6. »
  7. WordPress获取指定分类下的所有文章

文章目录

<?php
// 获取指定分类下的所有文章
    $args = array(
        'showposts' =>   7,    // 显示10条
        'cat'       =>   19,
        'order'     =>   'asc'
    );
    query_posts($args);
    while (have_posts()): the_post(); 
        ?>
        <li>
            <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" target="_blank"><?php the_title(); ?></a>
        </li>
    <?php endwhile; wp_reset_query();
?>

推荐阅读

联系我