I just tried the workaround for the first time in Jetpack 2.7 it was making pages with images return http://wordpress.com/i/blank.jpg
Fixed it by changing:
if ( empty( $media ) ) {
to
if ( $media ) {return $media;}
else {
I just tried the workaround for the first time in Jetpack 2.7 it was making pages with images return http://wordpress.com/i/blank.jpg
Fixed it by changing:
if ( empty( $media ) ) {
to
if ( $media ) {return $media;}
else {