欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

wordpress 指定分類從第二篇文章開始調用!

老白7年前2448瀏覽0評論

wordpress 指定分類從第二篇文章開始調用:

指定的分類就是cat=2,而從第二篇文章調用則是offset=1,如果=2就是從第三篇文章開始調取!

<?php if (have_posts()) : ?>
<?php query_posts('cat=2' . $mcatID. '&caller_get_posts=1&showposts=10&offset=1'); ?>
<?php while (have_posts()) : the_post(); ?>
 <li>
     <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" target="_blank">
     <?php the_title(); ?></a>
</li>
 <?php endwhile; ?>
<?php endif; wp_reset_query(); ?>