I am wanting to use wp as a CMS with static homepage and about 20 other static categories but also have a blog and news sections. These sections will be just like blogs but will only display the relevant information. After much searching I have found that it can be done using http://codex.wordpress.org/Template_Tags/query_posts but that is as far as my knowledge goes. I do not know where to add the code, where to find category Id's, what code I should use.
<?php get_header(); ?>
<div class="art-contentLayout">
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?><div class="art-content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
//Do I need to add the code here????
<div class="art-Post">
<div class="art-Post-body">
<div class="art-Post-inner art-article">
what query string would I need to add
Thanks and if anyone could make it an idiot guide, it would be very helpful