delarge
1/23/2018 - 1:54 AM

Wordpress get featured image caption

          <?php
            the_post_thumbnail( '800w' );

          // Get image caption
            $get_description = get_post(get_post_thumbnail_id())->post_excerpt;
              if(!empty($get_description)){//If description is not empty show the div
              echo '<div class="featured_caption">' . $get_description . '</div>';
              }
            ?>