I have a full blog setup for my news section, and I want to put the latest headlines on the home page, which is not a blog... What's the easist way to do this?
<?php query_posts('showposts=6'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php echo strip_tags(apply_filters('the_content', get_the_excerpt())); ?>


Comment