Custom post query with offset one post
-
Hi,
I’m putting on my query offset=1 but it doesn’t work. Please help me to correct this query.<?php global $post;
$args = array( ‘numberposts’ => 3, ‘offset’ => 1, ‘post_type’ => ‘about-me-items’ );
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
setup_postdata($post); ?>//contents
<?php endforeach;
wp_reset_postdata(); ?>
- The topic ‘Custom post query with offset one post’ is closed to new replies.