I was trying to get jetpack's infinite loop on my site and it's working just fine, but of course the design specified that the first 2 posts have a slightly different design, so I thought I could just use a wp_query like so:
<?php
$loop = new WP_Query( array(
'ignore_sticky_posts' => true,
'offset' => 2,
));
while ( $loop->have_posts() ) : $loop->the_post();
get_template_part( 'content' );
endwhile; wp_reset_query(); ?>
That's all great and infinite loop works, but the next 2 posts are repeats of the last two. I found this thread - http://wordpress.org/support/topic/custom-queries-and-how-to-avoid-jetpack-infinite-scroll-to-duplicate-post?replies=5
and thought that it might be related, but since it's 5 months old, I thought I would check.
Is jetpack's status still the same? If not any idea how this could be achieved? I tried using a counter as well instead of offset, but no joy...
PS: I love jetpack by the way... :)