Skip to content

Instantly share code, notes, and snippets.

@ville6000
Last active October 22, 2015 08:24
Show Gist options
  • Save ville6000/5d14602a72bb3d64b52e to your computer and use it in GitHub Desktop.
Save ville6000/5d14602a72bb3d64b52e to your computer and use it in GitHub Desktop.
Remove WordPress gallery shortcodes default styles
<?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