Filter the size of the Related Posts images.
Parameters
- array(
array 'width' => 350, 'height' => 200 ) Size of the images displayed below each Related Post.
Changelog
- Introduced in Jetpack 2.8.0
How to use this hook
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' );