I am adding the below code to my index.php to retrive 3 posts from the Featured category but it does'nt seem to work and gets only 1 post and displays endwhile below it, can anyone help?
<div id=”featured”>
<?php
query_posts(‘posts_per_page=3&cat=301′);
if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<h2><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>
<?php endwhile;?>
<?php wp_reset_query(); ?>
</div>