Excluir ultimo post en el query
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
A continuación vamos a listar los 5 post más recientes (posts_per_page=5) excluyendo solo el último (offset=1):
<?php
// el Query
query_posts('posts_per_page=5&offset=1');
// el Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
..
endwhile; else:
..
endif;
// reseteamos Query
wp_reset_query();
?>