<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
// Il codice del ciclo
endwhile;
else :
echo wpautop( 'Spiacente, nessun articolo trovato' );
endif;
?>
<?php
while ( have_posts() ): the_post();
// Visualizza articolo
if ( have_posts() ): // Se questo è l'ultimo articolo il ciclo ricomincia nuovamente
// Eseguire qualche operazione se non si tratta dell'ultimo articolo
endif;
endwhile;
?>
function more_posts() {
global $wp_query;
return $wp_query->current_post + 1 < $wp_query->post_count;
}
...
<?php if ( is_home() ) {
query_posts($query_string . '&cat=-3');
}
?>
...