0
votes

I would like to show all posts but only exclude the NEWEST post from the 'Featured' category, other posts from this cat should display. Any idea what I should add to the loop to achieve this? I don't understand it!

1
You can edit your own question. Don't add answers that aren't answers.Marcel Korpel

1 Answers

0
votes
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1; 
query_posts(array('paged' => $paged, 'category_name' => 'featured', 'offset' => '1'));
if(have_posts() : while(have_posts()) : the_post();
// blah blah layout here
endwhile; endif;
wp_reset_query;