Barbara
That’s the problem ??
It’s beyond my capabilities.
The only alternative is the following code (I haven’t tested it but it’s roughly right), and passing some variable into the query_string to change the offset dynamically according to which page you’re on. Again, I don’t know how to do that ??
This will show post titles from posts 5-10
A separate loop above it would just have the first five posts as full posts
<?php query_posts($query_string . '&offset=5&showposts=10'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></span> on <span class="post-information"> <?php the_time('j/m/Y') ?> by <?php the_author();?>
<?php if ( comments_open() ) : ?>
<?php comments_popup_link('No Comments - be the first!', '1 Comment so far - read it and leave your own! ', '% Comments - read them and leave your own!', 'comment-link', 'Sorry, no further comments on this post'); ?>
<?php endif; ?>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
If you figure anything out let me know ??