July 17, 2015
Use this to grab the Featured Image from the post parent if the child page is not using a Feature Image.
global $post; if (the_post_thumbnail() != '') { the_post_thumbnail(); } else { echo get_the_post_thumbnail($post->post_parent); }
Similar method found here.