Thanks Greenshady. When I use
<?php // retrieve one post with an ID of 1
query_posts('p=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
<?php endwhile;?>
it won’t work. I have 3 posts, and the only one it seems to work with is if I make p=0, 1 and 2 don’t. All 3 are set to uncategorized.
???