Hmm well that didn’t work….
Now instead of displaying an error message it just displays all of the code for that page.
I saved the ‘news.php’ file in the root of the site, while all of the wordpress set up files are saved in a ‘news’ file. Could this be a problem? Also, I never defined a wp-header.php- I was under the impression that this was just one of the standard wordpress files the page refers back to to load the blog, is that correct?
Also- I didn’t change the second part of the code-
<!--Get the last 10 posts. -->
<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?>
</a><br />
<?php endwhile;?>
Is that part correct?
I’ve got lots of questions- thanks for any advice y’all may have…