Additional Thumbnail Image Sizes
-
Hello,
Although the filter “cycloneslider_image_sizes” exists to overwrite or add to the existing thumbnail sizes, I cannot get it to apply. I have tried nearly every combination I can. Has anyone successfully gotten this to work? I have tried variations on below:
add_filter( 'cycloneslider_image_sizes', 'sliderImageSizes', 1, 1 );
function sliderImageSizes( $sizes ) { $sizes = array( '40_40_crop' => array( // Used by thumbnail template 'width' => 40, 'height' => 40, 'resize_option' => 'crop' ), '60_60_crop' => array( // Used by Galleria template 'width' => 60, 'height' => 60, 'resize_option' => 'crop' ), '65_40_crop' => array( // Used by custom template 'width' => 65, 'height' => 40, 'resize_option' => 'crop' ), ); return $sizes; }
I have looked at the code in the plugin and in theory it should run, but it never seems to even though I can see using some debug plugins that the filter appears loaded. I’m sure it’s something simple, but hopefully someone can help. Any suggestions? Thanks so much!
-Adam
- The topic ‘Additional Thumbnail Image Sizes’ is closed to new replies.