Corregir el s0.wp.com/i/blank.jpg

Por alguna razón (que no he investigado), cuando se comparte una página de wordpress wordpress en redes sociales (facebook o twitter, por ejemplo) no se muestra la imagen principal sino una imagen en blanco.

Esto se corrige añadiendo el siguiente código al archivo funtions.php


function fb_home_image( $tags ) {
if ( is_home() || is_front_page() ) {
// Remove the default blank image added by Jetpack
unset( $tags[‘og:image’] );

$fb_home_img = ‘YOUR_IMAGE_URL’;
$tags[‘og:image’] = esc_url( $fb_home_img );
}
return $tags;
}
add_filter( ‘jetpack_open_graph_tags’, ‘fb_home_image’ );