Where to add offset?

时间:2013-08-03 作者:Max

我想使用offset函数跳过第一篇文章,我有一段代码,里面需要放一个offside=1,但无论我在哪里插入它,我都会收到错误。。。你知道我可以在下面的代码中添加它吗?

<?php 
$recent = new WP_Query( array( 
    \'tag\' => get_option(\'gd_slider_tags\'), 
    \'showposts\' => get_option(\'gd_slider_num\')) 
); 
while($recent->have_posts()) : $recent->the_post();?>

1 个回复
SO网友:anu
<?php 
$recent = new WP_Query( array( 
    \'tag\' => get_option(\'gd_slider_tags\'), 
    \'posts_per_page\' => get_option(\'gd_slider_num\'),
    \'offset\' => 1) 
); 
while($recent->have_posts()) : $recent->the_post();?>
结束

相关推荐

Pagination and multiple loops

对,所以我现在有一个使用css网格将页面分成三部分的页面。第三列是侧栏,前两列各有一个要显示的帖子查询,并创建一个漂亮的帖子网格(虚拟内容):http://puu.sh/2Xh9o.jpg每个循环如下所示: <?php query_posts(\'showposts=5\'); ?> <?php $posts = get_posts(\'numberposts=5&offset=0\'); foreach ($posts as $post) : start_wp()