Created
April 25, 2018 15:28
-
-
Save AnkanSoul/b62bd41f37597bd2d1502b29bad2f429 to your computer and use it in GitHub Desktop.
CPT Images file call
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =================== 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