Remove inline style from gallery shortcode
wordpress snippet
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.
snippet : PHPcopy
add_filter( 'use_default_gallery_style', '__return_false' );
this months featured snippets
- Webminky
- http://wpsnipp.com Kevin Chard











