Can anyone help with the below code. I can't get the 'Read more...' link to display in my index.php. Am i missing a setting in the wp-admin?? I'm lost, any help would be greatly appreciated.
<?php get_header(); ?>
<?php query_posts("category_name=Blog"); ?>
<?php global $more; $more = 0; ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div class="postTitle"><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2></div><div class="dateStamp"><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> -->| <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></div>
<div class="entry">
<?php the_content('Read more...'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>