:-)
Thanks for your reply.
For those that want to know how to get multiple posts on a single.php type page, it's very, very easy.
The first line and the last line do the stuff, the rest is just an example Loop inbetween
<?php if (is_single('990')) {?>
<?php query_posts('showposts=200&cat=71&order=ASC'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="<?php echo $oddpost; ?>" id="post-<?php the_ID(); ?>">
<?php if ( comments_open() ) : ?>
<span class="number-of-comments"> <?php comments_popup_link('', '1 Comment', '% Comments', 'comment-link', 'Sorry, no further comments on this post'); ?></span>
<?php endif; ?>
</div> <?php /* COMMENT end <div class="post"> END COMMENT */?>
<?php endwhile; ?>
<?php /* COMMENT
Wordpress has finished fetching all the posts. The Loop doesn't finish until <?php endif; ?> END COMMENT */?>
<?php else : ?>
<?php /* If no posts were found then do all the stuff between here and the final <?php endif; ?> below, such as displaying an apology or a search form. */?>
<h2 class="not-found">Sorry! </h2>
<p class="not-found">No posts were found - try something else
<form method="get" id="search-form-not-found" action="<?php bloginfo('home'); ?>/">
<fieldset>
<input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="search-input-not-found" />
<input type="submit" id="search-submit-not-found" value="Search" />
</fieldset>
</form>
<?php /* This displays an apology and a search form if no posts were found. Delete it or just have a line of text if you want */?>
<?php endif; ?>
<?php /* End of The Loop */?>
<?php } ?>
You'll need to create a unique single page to carry this code, otherwise none of your other posts will show (because they won't be the single post with an id of 990)
You'll have to mess around, but basically in single.php you need to send different categories of posts to different single pages.
So in single.php we need to put something like this:
<?php
if (in_category(80)) {include(TEMPLATEPATH . '/single-oranges.php');}
elseif (in_category(90)) {include(TEMPLATEPATH . '/single-lemons.php');}
else {include(TEMPLATEPATH . '/single-plums.php');} /* Default template to use if post is not in one of categories above */
?>