Monday, October 1, 2012

Remove inline style from gallery shortcode

The WordPress gallery shortcode will add some inline CSS to your document however if I’m like many of you, I would rather use my own. Adding the above snippet to the functions.php of your wordpress theme will disable the default gallery styles from being inserted into the page.
add_filter( 'use_default_gallery_style', '__return_false' );

No comments:

Post a Comment