Skip to content

Instantly share code, notes, and snippets.

@ryarwood
Created December 2, 2015 23:54
Show Gist options
  • Save ryarwood/b6b2ea2e2baea285e607 to your computer and use it in GitHub Desktop.
Save ryarwood/b6b2ea2e2baea285e607 to your computer and use it in GitHub Desktop.
Wordpress ACF Image Backup
<?php
$featured_image = get_field('post_featured_image');
if( $featured_image ) {
echo '<img src="'.$featured_image.'" class="stretch" />';
} else {
echo '<img src="'.get_bloginfo('template_url').'/images/news/default.jpg" class="stretch" />';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment