Last active
October 22, 2015 08:24
-
-
Save ville6000/5d14602a72bb3d64b52e to your computer and use it in GitHub Desktop.
Remove WordPress gallery shortcodes default styles
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 my_theme_default_gallery_style() { | |
return false; | |
} | |
add_filter( 'use_default_gallery_style', 'my_theme_default_gallery_style' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment