WordPress获取某一分类文章列表和排除首篇文章

来自:互联网
时间:2018-10-21
阅读:

这方面的代码基本都可以用于CMS模板的制作以及侧栏的分类调用上。

利用到wp的查询函数query_posts(),代码很简单,直接复制粘贴就可以用了:

<div>
    <?php query_posts("showposts=4&cat=5&offset=1")?>
    <ul>
        <?php while (have_posts()) : the_post(); ?>
        <li>            
            <a href="<?php the_permalink() ?>" target="_blank" title="<?php the_title(); ?>">
            <?php the_title(); ?></a>
            <span id="date">[<?php the_time('m-d'); ?>]</span>
        </li>
        <?php endwhile; wp_reset_query(); ?>
    </ul>
</div>

query_posts()函数中的几个参数分别为:

showposts=4 代表显示数量为4篇

cat=5 代表分类id为5

offset=1 代表排除该分类下最新的第一篇文章,如果为2,则排除两篇,以此类推

返回顶部
顶部