Remove content images from being used as featured images.
// Remove content images from being used as featured images.
function remove_featured_image_archives( $post ) {
if( !has_post_thumbnail() )
$post = '';
return $post;
}
add_filter( 'genesis_pre_get_image', 'remove_featured_image_archives', 10, 3 );