Well, I got my site running, but I have a problem. I'm trying to make it so that each page only displays one category of posts. Here's the site: www.tftblog.org. This is the code I'm using.
<?php
query_posts('category name=terrain');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
So I'm working on the terrain page, and I'm trying to get only the terrain posts to pop up. What you see is that they do, but they also get lumped into one big post at the top! I'm new to Wordpress, so I don't know much about the code. I've searched around, and that's what I could find. I did put in a plugin to allow me to use php code in the pages, which is where I put that string of code. Right in the Terrain page is where I put it.
Any ideas?