Alter media caption/description conflict in WordPress?

When uploading an image, WordPress reads the description meta data from the jpg via wp_read_image_metadata and inserts it into the post_content field when adding the attachment via media_handle_upload or media_handle_sideload But when adding a image to the editor in WordPress, it looks for the caption in the post_excerpt field via image_media_send_to_editor What I’d like is … Read more

How I can get image description/title/alt for gallery image?

I’m displaying a gallery image but I also want display the caption for image. I can get the info that we insert when us upload a image in WordPress Dashboard like “Title/Caption/ALT/Description”. I want get anyone and display. <?php $gallery = get_post_gallery_images( $post ); foreach( $gallery as $image_url ) : ?> <div class=”item” style=”background-image: url(‘<?php … Read more

Text editor on WP caption [closed]

Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 3 years ago. Improve this question I’m trying to add the visual editor to image captions in wordpress. I’m somewhat able to but there are a … Read more