How can I show these pictures in two columns in my page?
If it’s a usable option for you, you can change the output of to use <span> tag instead of a <div>. This how you’d change the output (to be added in theme functions.php) of the Caption shortcode: // Source code from http://core.svn.wordpress.org/trunk/wp-includes/media.php add_filter( ‘img_caption_shortcode’, ‘wpse57262_cleaner_caption’, 10, 3 ); function wpse57262_cleaner_caption( $output, $attr, $content ) { … Read more