All Posts Have The Same Comments

You are stomping on the global wordpress posts with your plugin.

Doing your wp_query call and then calling

$recent_articles_wtb->the_post();

means that later (after your loop), you will want to call

wp_reset_postdata(); # Thanks Milo

That should reset the global $current_post and $post objects.