Home › Forums › General Issues › Custom Image Sizes › Reply To: Custom Image Sizes
That is not working… Here is what I have now and now I’m not getting any results back.
<div>
<?php
$attachment_id = get_field('field_name');
$size = "custom-size"; // (thumbnail, medium, large, full or custom size)
$image = wp_get_attachment_image_src( $attachment_id, $size );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
<a href="<?php the_permalink() ?>" title="<?php printf(__('%s','rys'), get_the_title()) ?>" rel="bookmark" >
<img class="image-class" alt="" src="<?php echo $image[0]; ?>" />
</a>
</div>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.