not functioning

I have the following blog template with the the_content outputted. I have placed <!–more–> However it does not appear to be functioning, http://www.milknhny.co.uk/DVine/?page_id=19 Is there anything that needs to be included within functions for this to function? Code Of my Blog Template <?php /* Template Name: Blog Template */ ?> <?php get_header();?> <?php echo get_the_post_thumbnail($post->ID, … Read more

Modify ‘Read more’ link adding a new class

I want to add a class to the ‘Read more’ link. Actually I have this: <?php the_content( ‘Read more…’ ); ?> Which outputs: <a href=”…?p=14#more-14″ class=”more-link”>Read more…</a> How can I add a class (using PHP) to the link, so it outputs: <a href=”…?p=14#more-14″ class=”more-link my_new_class”>Read more…</a> 4 Answers 4 What (exactly) happens When calling the_content() … Read more