peepso_filter_photos_thumb_settings
array
Used to modify the size (in pixels) of thumbnails generated by PeepSo Photos.
// change the size of big uncropped thumb to 1024 add_filter('peepso_filter_photos_thumb_settings', function($thumbs){ $thumbs['l'] = array(1024, 0, FALSE); return($thumbs); });