Site logo

Archived topic

Dispatch - Using medium_large thumbnails on mainpage

2 replies · Started by Raul on February 10, 2021

Viewing posts 1–3 of 3

Hi,

I am using the Dispatch demo for my theme. To increase my performance I would like to use the thumbnails or medium_thumbnails from as thumbs and not the original images.

Is that possible?

Hi there,

you can force WP Show Posts to use a different image size using this PHP Snippet:

add_filter( 'wpsp_default_image_size', function() {
    return 'your-size-name';
} );

Just swap out your-size-name with the size you want eg. medium

Thank you. And for archives overview like here (private message)

This archived topic is closed to new replies.