I’m sorry i’ve put in a post that doesn’t have the more tag in it DUH!
Could you tell me what the extra code does?
THIS CODE WORKS!
<?php $recent = new WP_Query("cat=5&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php global $more; $more = 0; ?>
<?php the_content('Read More..'); ?>
<?php endwhile; ?>