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!