Table Of Contents

Filter: photo thumbnail sizes

Table Of Contents
Hook
peepso_filter_photos_thumb_settings

 

Plugin PeepSo Photos
Since 1.10.4
Status Active
Args
array

Description #

Used to modify the size (in pixels) of thumbnails generated by PeepSo Photos.

Examples #

1 2 3 4 5
// 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);
});

What are your feelings
Updated on Sep 22, 2023