How can I skip the first post in Wordpress?

How can I skip the first post? I am using wordpress.

<?php $recentPosts = new WP_Query(); $recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri'))); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> 

thanks

+4
source share
1 answer

Use offset parameter

 <?php $recentPosts = new WP_Query( 'offset=1' ) ); $recentPosts->query(array('showposts' => 6,'post_type' =>array('stiri'))); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> 

http://codex.wordpress.org/Class_Reference/WP_Query#Offset_Parameter

+11
source

All Articles