On one of my pages I have the need to have a static “information” area at the top and an update-able blog category displayed at the bottom. This is for products so that the Product Information can be at the top of the page complete with a downloader, while at the bottom I can post constant product updates directly to its blog category.
I believe I would need to create a new page template and insert the following somewhere in it:`<?php $my_query = new WP_Query('category_name=CATEGORY-NAME&showposts=2'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<a href=”<?php the_permalink() ?>” title=”<?php the_title(); ?>”>
<?php the_title(); ?></a><?php the_excerpt(); ?>
<?php endwhile; ?>
`
I’m just not sure about what else needs to be in the template file to correctly display a second content area.