filter

jetpack_relatedposts_filter_thumbnail_size

Filter the size of the Related Posts images.

Parameters

array(
array

array( 'width' => 350, 'height' => 200 ) Size of the images displayed below each Related Post.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use this filter to change the size of the thumbnails used in Related Posts.
function jeherve_relatedposts_thumbnail_size( $size ) {
	$size = array(
		'width'  => 500,
		'height' => 200
	);
	return $size;
}
add_filter( 'jetpack_relatedposts_filter_thumbnail_size', 'jeherve_relatedposts_thumbnail_size' );