Hi Fellow 'pressers,
This is a long post, so I'll start with the question: what change do I need to make to my index.php so that when a reader clicks on a category or date on the calendar, the resulting displayed post shows more than 4 or 5 lines (ideally all lines).
I am using the Neo-Sapien theme for my blog (http://www.tp79reunion09.com). In the theme, the loop as follows:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content('Read more…'); ?>
<p class="postmetadata">
<?php the_time('F jS, Y') ?>
<?php _e('Categories:'); ?> <?php the_category(', ') ?> . <?php _e('Author:'); ?> <a href="<?php the_author_url(); ?>"><?php the_author(); ?></a> . <?php _e('Comments:'); ?> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <?php edit_post_link('Edit this entry', '', ''); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation"><?php posts_nav_link('','','Previous page') ?> <?php posts_nav_link('','Next page','') ?></div>
<?php else : ?>
<div class="post">
<div class="post-title><h2><?php _e('Not Found'); ?></h2></div>
<div class="entry"><?php _e('Sorry, but you are looking for something that isn't here.'); ?></div>
</div>
<?php endif; ?>
What do I change? If showing all lines isn't possible (or a good idea), how do I get the "read more" to show up? Right now there's a [...] where it cuts off but it's not a hyperlink.
Thanks!
Rafael