Opened 10 months ago
Closed 10 months ago
#21541 closed defect (bug) (invalid)
Image caption in the visual editor not integrating proper html code
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Editor | Version: | |
| Severity: | normal | Keywords: | needs-patch |
| Cc: |
Description (last modified by SergeyBiryukov)
The image caption that I add in the visual editor is not getting integrated properly in the html editor.
When I make corrections in the html editor and update it, it works fine.
But again when I go to the visual editor and save the post, all the corrections I made in html editor goes for a toss.
For example,
This is how the code is supposed to be:
[caption id="attachment_1263" align="aligncenter" width="600" caption="photo credit: www.flickr.com/photos/tonystanley/399738240/"]<img class="wp-image-1263 " title="munnar" src="http://www.traveldest.org/wp-content/uploads/munnar.jpg" alt="munnar" width="600" height="398" />[/caption]
But this is what is inserted by visual editor:
[caption id="attachment_1263" align="aligncenter" width="600"]<img class="wp-image-1263 " title="munnar" src="http://www.traveldest.org/wp-content/uploads/munnar.jpg" alt="munnar" width="600" height="398" /> photo credit: www.flickr.com/photos/tonystanley/399738240/[/caption]
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.

You have listed the old and the new format for the image caption shortcode, and yes, there is code in the wpeditimage plugin for TinyMCE to convert that shortcode from the old to the new format.
If the 'img_caption_shortcode' filter is used (as it should) there will be no differences as the format is normalized before applying the filter.
For more info see #18311.