The More link is added by the this code on my web page:
<?php
require(‘../blog/wp-blog-header.php’);
?>
<?php
$posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title’);
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo “
“; ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
<?php
endforeach;
?>