removing inline styles from wp-caption div

To remove the inline width in a clean PHP-way could be done with a filter, as described in the source code: https://core.trac.wordpress.org/browser/trunk/src/wp-includes/media.php#L1587

Returning a zero (or false) will remove it:

add_filter( 'img_caption_shortcode_width', '__return_false' );

Leave a Comment