If you want to make a shortcode for [wp_simple_related_posts], please add the code in functions.php below:
add_shortcode( 'wp_simple_related_posts', 'wp_simple_related_posts_shortcode' );
function wp_simple_related_posts_shortcode() {
global $simple_related_posts;
if ( !class_exists('Simple_Related_Posts') )
return;
return $simple_related_posts->get_reloated_posts();
}