Thumbnail croping not working
-
Hi, I use ACF, and I have problem with thumbnails(custom field return object image). In functions.php I add new thubm size:
add_image_size( 'single-thumb', 1200, 300, array( 'center', 'top' ) );
and in themplate
<?php $image = get_field('thumb', $caught->ID); $newthumb = $image['sizes']['single-thumb']; ?> <img src="<?php echo $newthumb; ?>" alt="<?php echo $image['alt']; ?>">
$newthumb returns the url to original image, not thumbnail ?? but, when I set single-thumb to:
add_image_size( 'single-thumb', 1200, 300 );
and it generate proper thumbnail, conclusion?? Cropping thumbnails not working, why?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Thumbnail croping not working’ is closed to new replies.