If you are facing problem with YARPP (Yet Another Related Post Plugin) of duplicating content then you can try one of the method written below to fix that problem.
YARPP content duplicate problem may occur due to cache or related_post function call problems.
Method-1
You can flush the cache to handle with the issue. So, go to admin page of Yet Another Related Post and add &action=flush at the end of URL
e.g.
http://YourWebsite.com/wp-admin/options-general.php?page=yet-another-related-posts-plugin/options.php&action=flush
Method- 2
Open single.php or the files where you added related_post(); of your WordPress theme and remove echo before related_post function call
change following code
<?php echo related_posts(); } ?>
to
<?php related_posts(); } ?>
