Uses
Uses | Description |
---|---|
wp-includes/post.php: wp_get_attachment_caption() | Retrieves the caption for an attachment. |
wp-includes/post-thumbnail-template.php: get_post_thumbnail_id() | Retrieve post thumbnail ID. |
Returns the post thumbnail caption.
(string) Post thumbnail caption.
File: wp-includes/post-thumbnail-template.php
function get_the_post_thumbnail_caption( $post = null ) { $post_thumbnail_id = get_post_thumbnail_id( $post ); if ( ! $post_thumbnail_id ) { return ''; } $caption = wp_get_attachment_caption( $post_thumbnail_id ); if ( ! $caption ) { $caption = ''; } return $caption; }
Version | Description |
---|---|
4.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_caption