Just from experimenting again, I think I’ve solved the tag issue – I wasn’t inserting a row into wp_term_taxonomy to indicate that the row was a tag. There’s that issue solved! Now to figure out the image one…
Never mind. As simple as this:
<?php
query_posts('page_id=10'); // change as necessary
while(have_posts()) { the_post();
the_content();
}
?>
You’re a hero – works perfectly. Thanks.
Thank you, I’d made both those database changes but hadn’t deleted the /cache/ directory.