How best to apply do_shortcode in media.php for captions
Caption shortcode attributes are merged with defaults using shortcode_atts function like so (see source in media.php): $atts = shortcode_atts( array( ‘id’ => ”, ‘align’ => ‘alignnone’, ‘width’ => ”, ‘caption’ => ”, ‘class’ => ”, ), $attr, ‘caption’ ); So the 3rd $shortcode param is in use with the value of ‘caption’. As you can … Read more