filter the_content, custom post type, and wp_query

the_post_thumbnail is echoing content. You need get_the_post_thumbnail instead. That is your problem.

I believe you should be able to swap this: $the_ad = the_post_thumbnail();, for this: $the_ad = get_the_post_thumbnail();