Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/07/2011, 09:42
edn
 
Fecha de Ingreso: junio-2011
Mensajes: 126
Antigüedad: 12 años, 9 meses
Puntos: 8
Modificar código

Este código excluye el último post del index (Portada):
Código PHP:
 <?php
query_posts
('posts_per_page=5&offset=1');
if ( 
have_posts() ) : while ( have_posts() ) : the_post();
?>

Quiero hacer que excluya el último post de las categorías y de los tags.

Saludos!