[Help Needed] Wordpress Featured Image Do Not Show Captions

hameem

Elite Member
Joined
Jul 21, 2011
Messages
1,914
Reaction score
1,010
Even if I put the caption while selecting/uploading featured images, the caption does not show. However, the images inside the posts show the captions just fine.

I have searched around but could not find a solution that solved the problem. Any easy work around this?
 
look for the_post_thumbnail() and change it to this one below.
Code:
<?php the_post_thumbnail(); echo get_post(get_post_thumbnail_id())->post_excerpt; ?>
Hope that helps!
 
Back
Top