Include only posts with meta key “add_in_rss” in RSS Feed

Change if($meta = "yes") to if($meta == 'yes'). Your way is setting the variable to yes, so it’s always yes; the double equals symbol means to test for a condition rather than set it.

tech