hi please if anyone can tell me step by step where to put this CODE:
///////////////////////////////////////////////////////////////////
<?php if (have_posts()) : ?>
<?php $count = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php $count++; ?>
<?php if ($count <= 2) : ?>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
<?php the_title(); ?></h2>
<?php the_content(); ?> // display the full content of the first two posts only
<?php else : ?>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”> <?php the_title(); ?></h2> // Just the permalinks
<?php endif; ?>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
//////////////////////////////////////////////////////////////////////
THANK YOU.