How to add a caption to an image attachment in a file list?
You simply need to pass $attachment_id instead of get_post_thumbnail_id() in echo get_post(get_post_thumbnail_id())->post_excerpt; with wptexturize to prevent your markup from breaking other things. Update: As @birgire suggested I think it is better to use get_post_field() instead of directly accessing post property. Updated code:- function soth_output_gallery_file_list( $file_list_meta_key, $img_size ) { // Get the list of files $files … Read more