Is there a function to get the caption for an image in wordpress

前端 未结 5 1637
情书的邮戳
情书的邮戳 2020-12-15 23:39

I\'m trying to get the captions from images in Wordpress but I can\'t find an easy function to grab this bit of information.

Anyone know a way to get this?

T

5条回答
  •  無奈伤痛
    2020-12-16 00:04

    Turns out captions are stored as post excerpts. So,

    post_excerpt; ?>
    

    will print out the caption if you are on the attachment image page (image.php in your theme) and inside the Loop.

提交回复
热议问题