Skip to content

Instantly share code, notes, and snippets.

@antiden
Created January 9, 2017 07:07
Show Gist options
  • Save antiden/a321f34efb666e8c9b4c9ddea154e365 to your computer and use it in GitHub Desktop.
Save antiden/a321f34efb666e8c9b4c9ddea154e365 to your computer and use it in GitHub Desktop.
WP ACF Image Object
<?php $image = get_field('thumbnail'); ?>
<?php if( !empty($image) ) { ?>
<div class="article_thumb">
<?php
$url = $image['url'];
$title = $image['title'];
$size = 'news';
$thumb = $image['sizes'][ $size ];
?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo $thumb; ?>" alt="<?php the_title(); ?>"></a>
</div>
<?php } else if (empty($image)) { ?>
<div class="article_thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo get_bloginfo('template_directory') . '/images/noimage.jpg'; ?>" alt="<?php the_title(); ?>"></a></div>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment