My wordpress blog currently is set up to display the full text on the most recent post, and an excerpt that I create in the post input page for all other posts.
I would like to change it so that the most recent post is the same as all the other posts. I want all the posts to display a certain length of the post, including images if they are in the beginning of the post.
Is it possible for someone to tell me now to do this, or is it too complicated? I'm pasting in my index.php file:
<?php get_header(); ?>
<div id="content">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('Index Top Right')):?>
<?php endif;?>
<div class="index-block">
<?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar('Video Spot')):?>
<?php endif;?>
</div>
<h2 class="section_title">Most Recent Posts</h2>
<?php $c=0;?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $c++;?>
<div id="post-<?php the_ID(); ?>" class="post">
<h2 class="title">" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
<p class="meta author"><?php the_time('F jS, Y') ?></span><b> </b>
</p>
<div class="entry">
<?php if( $c==1 ) the_content();
else the_excerpt('...Read more »'); ?>
</div>
<p class="bottom-meta" style="text-align:right;margin:0;">
<?php comments_popup_link('Add Your Comments', '1 Comment', '% Comments', 'comments'); ?>
</p>
<?php if (function_exists('sharethis_button')) { sharethis_button(); } ?>
</div>
<?php endwhile; ?>
<div class="navigation">
<span><?php next_posts_link('« Previous Entries') ?></span> |
<span><?php previous_posts_link('Next Entries »') ?></span>
</div>
<?php else : ?>
<div class="post">
<h1 class="title">Not Found</h1>
<div class="entry">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
</div>
<?php endif; ?>
</div>
<!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>