Viewing 1 replies (of 1 total)
  • Thread Starter bosskland

    (@bosskland)

    I figured it out..

    	<?php 
    	query_posts('posts_per_page=3&offset=1');
    	$i = 0; 
    	while (have_posts()) : the_post(); 
    	$i++;
    	$classes = array('site-archive-post'); 
    	
    	if ( !has_post_thumbnail() ) {
    		$classes[] = 'post-nothumbnail';
    	} else {
    		$classes[] = 'has-post-thumbnail';
    	}
    
    	?>
Viewing 1 replies (of 1 total)
  • The topic ‘loop offset’ is closed to new replies.