Hi there,
I am having some confusion with a query for showing posts.
Currently I have this: http://paste-it.net/public/lbb7793/
which shows latest post, then 3 recent and then a list of the rest.
Now what I want to show 5 latest posts, then 3, then the list but I am getting confused. The code below - I believe - controls the latest post, but what do I need to change to show 5 latest posts?
' <?php
$postCount = 0;
query_posts( 'showposts=900&post_per_page=-1&cat=' . get_query_var('cat') );
while (have_posts()) { the_post();
if( $postcount == 0 ) { ?>
<?php
//This grabs the latest excerpt
if (isset($values[0])) {
?>
'
Any help greatly appreciated.
Cheers,
Karl