/home/kkco/.trash/wordpress-23-related-posts-plugin/widget.php
<?php

add_action('plugins_loaded', 'widget_sidebar_wp_related_posts');

function widget_wp_related_posts($args) {
	if(is_single()) {
		extract($args);
		echo $before_widget;
		
		//echo $before_title . $options["related_posts_title"] . $after_title;
		$output = wp_rp_get_related_posts($before_title, $after_title);
		echo $output;
		echo $after_widget;
	}
}

function widget_sidebar_wp_related_posts() {
	wp_register_sidebar_widget('wp_related_posts_widget', 'Related Posts', 'widget_wp_related_posts');
}