Hi Otto,
I'm using your plugin to make the latest post for a certain category appear in my sidebar, and it works great.
I am having a style problem, however. I have two widgets in my sidebar. One is yours, with the following code:
<?php $recent = new WP_Query("cat=351&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
<?php the_content(__('Read the story »'));?><div style="clear:both;"></div>
<?php endwhile; ?>
The second is a text widget with two sentences in it.
My stylesheet separates widgets into blocks, all separated by a gray border. Your plugin, however, combines the content of both widgets into a single block.
Is there a way to break them up? I've used <div> tags for both, without success.
Thanks!