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

前端 未结 5 1642
情书的邮戳
情书的邮戳 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:28

    I'm using this code, It works fine.

    $get_description = get_post(get_post_thumbnail_id())->post_excerpt; if(!empty($get_description)){//If description is not empty show the div    echo '
    ' . $get_description . '
    '; }

提交回复
热议问题