Skip to content

Instantly share code, notes, and snippets.

@wrightmartin
Created February 3, 2015 11:18
Show Gist options
  • Save wrightmartin/4d83e19997b4427f34bc to your computer and use it in GitHub Desktop.
Save wrightmartin/4d83e19997b4427f34bc to your computer and use it in GitHub Desktop.
Get featured post url
<div class="case-study__screenshot"
<?php if($latest_case_study->has_post_thumbnail()) {
$thumb_id = get_post_thumbnail_id();
$thumb_url_array = wp_get_attachment_image_src($thumb_id, 'medium', true);
$thumb_url = $thumb_url_array[0];
?>
style="background-image: url(<?php $thumb_url ?>);"
<?php } ?>
>
</div>
@lizconlan
Copy link

try changing line 3 to...

 $thumb_id = get_post_thumbnail_id($latest_case_study->ID);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment