Guest User

Untitled

a guest
Nov 18th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // change thumbnail size
  2. function jetpackchange_image_size ( $thumbnail_size ) {
  3. $thumbnail_size['width'] = 250;
  4. $thumbnail_size['height'] = 250;
  5. // $thumbnail_size['crop'] = true;
  6. return $thumbnail_size;
  7. }
  8. add_filter( 'jetpack_relatedposts_filter_thumbnail_size', 'jetpackchange_image_size' );
Add Comment
Please, Sign In to add comment