Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Possible Duplicate:
Customized first post techniques

how can i skip first post ,I use this code,

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

Thanks

share|improve this question
1  
-1 duplicate and for not taking the time to frame the question. – its_me Jul 28 '12 at 3:32

marked as duplicate by brasofilo, Chris_O, Michael, Wyck, Brian Fegter Aug 30 '12 at 3:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

you can use 'offset' => 1 in the query array

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.