The following code is the just my basic plage with nothing on, what would i have to add to the code for it to display blog posts? preferably from a particulat category, category 18 to be exact!
Page code - http://pastebin.com/qhLkeUwV
Thanks in advance!
I've found that the following code will work -
<?php
query_posts('cat=18');
while (have_posts()) : the_post();
the_content();
endwhile;
?>
But anywhere i put it, my template ends up messed up. Seems to work tho. Can someone tell me where to put the code?
See your other post on this topic.