Can’t insert caption into image

You can see live example here.
When I add a caption into the image, it doesn’t show at all!
I’ve added the caption to the image as you can see in the next picture

Here

Read More

but it doesn’t show as you see below

here

But when I click edit the picture icon as you see below

here

and fill in the caption field

here

the caption works!

fine

Why it’s not working in the first case? I’ve disabled all plugins and no luck! I’ve tried the twenty fourteen theme, and no problem there, so the problem is in my theme only.
Can you please help!

Related posts

Leave a Reply

1 comment

  1. I solved it, the problem was a function I used to use and forgot about!

     add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10 );
     add_filter( 'image_send_to_editor', 'remove_thumbnail_dimensions', 10 );
     function remove_thumbnail_dimensions( $html ) {
         $html = preg_replace( '/(width|height)="d*"s/', "", $html );
         return $html;
     }
    

    I removed this function and everything is OK now.