Wednesday, April 2, 2014

How to get featured image in wordpress

Lets have a look how to get featured image in wordpress

  <?php if (has_post_thumbnail( $post->ID ) ): ?>
    <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?>
    <div id="custom-bg" style="background-image: url('<?php echo $image[0]; ?>')"> </div>
    <?php endif; ?>

No comments:

Post a Comment