Skip to content

Instantly share code, notes, and snippets.

@AnkanSoul
Created April 25, 2018 15:28
Show Gist options
  • Select an option

  • Save AnkanSoul/b62bd41f37597bd2d1502b29bad2f429 to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/b62bd41f37597bd2d1502b29bad2f429 to your computer and use it in GitHub Desktop.
CPT Images file call
=================== CPT Images file call ========================================================
<div class="cs-media">
<?php
$image_src = '';
$image = get_post_meta( $post->ID, 'image_name', true );
$image_src = wp_get_attachment_url( $image );
?>
<figure><img src="<?php echo $image_src; ?>"></figure>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment