// Get the recipes inside this post.
global $post;
$recipes = WPRM_Recipe_Manager::get_recipe_ids_from_content( $post->post_content );
// Access the first recipe, if there is one.
if ( isset( $recipes[0] ) ) {
$recipe_id = $recipes[0];
$recipe = WPRM_Recipe_Manager::get_recipe( $recipe_id );
// Output the recipe name.
echo $recipe->name();
}