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(); ?>