Last active
December 11, 2015 19:18
-
-
Save kreamweb/4647044 to your computer and use it in GitHub Desktop.
Filter to remove style from wordpress gallery shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wpt_remove_gallery_css( $css ) { | |
return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css ); | |
} | |
add_filter( 'gallery_style', 'wpt_remove_gallery_css' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment