My wordpress site homepage currently pulls the introduction and image from the most recent 9 posts onto the homepage. I would like for it to pull the first 9 posts, and then remain static. I need to update my blog without updating the homepage. Can someone help me? Here is the code:
[php]<?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?>
<div <?php post_class(); ?> id=“post-<?php the_ID(); ?>”>
[/php]