Disable cropping of Big Preview on Single

PHOTO EMBED

Tue Oct 18 2022 09:41:41 GMT+0000 (Coordinated Universal Time)

Saved by @omnixima #php

// Disable cropping of Big Preview on Single
function custom_blog_img_size($thumb,$current_post,$size) {
	return get_the_post_thumbnail($current_post["the_id"], 'large');
}
add_filter('avf_post_featured_image_link','custom_blog_img_size', 10, 3);
content_copyCOPY