Oh the reason it doesn’t work is compatibility with the new ver. THIS WORKS:
For the first post…
<?php
global $post;
$myposts = get_posts('numberposts=1&offset=0');
foreach($myposts as $post) :
setup_postdata($post);
?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<?php if ( is_single() ) { ?><div class="meta"><?php the_author() ?> | <?php the_category(',') ?> | <?php the_time('l, d F Y') ?> <?php edit_post_link(__('Edit')); ?></div><? } ?>
<div class="storycontent">
<?php the_content(); ?>
</div>
</div>
<?php endforeach; ?>
For the 2nd post on…
<?php
global $post;
$myposts = get_posts('numberposts=9&offset=1');
foreach($myposts as $post) :
setup_postdata($post);
?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<?php if ( is_single() ) { ?><div class="meta"><?php the_author() ?> | <?php the_category(',') ?> | <?php the_time('l, d F Y') ?> <?php edit_post_link(__('Edit')); ?></div><? } ?>
<div class="storycontent">
<?php the_excerpt(); ?>
</div>
</div>
<?php endforeach; ?>
That plugin DOES work, but not always (anymore).