Thank you for your reply. I am unable to get that to work. Do you have a usage example while in the loop?
I have been using this as a workaround:
<?php
$ssp_episode_image_id = get_post_meta(get_the_ID(), 'cover_image_id', true);
$ssp_episode_image = wp_get_attachment_image_src($ssp_episode_image_id, "medium");
?>
<img src="<?php echo $ssp_episode_image[0]; ?>">
-
This reply was modified 2 years ago by snappysites.
-
This reply was modified 2 years ago by snappysites. Reason: fixed some markup