Make custom gallery use post thumbnail (featured image)
-
For some reason the shortcode su_custom_gallery does not use the post thumbnail, ie the featured image
By changing
'image' => wp_get_attachment_url( $thumb ),
to
'image' => wp_get_attachment_image_src( $thumb, 'post-thumbnail')[0],
at around line 425 of functions-galleries.phpI can change the behaviour, but I’m not sure how to override this function without changing the plugin itself. Is this possible?
The topic ‘Make custom gallery use post thumbnail (featured image)’ is closed to new replies.