Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created December 30, 2013 20:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shazdeh/8188033 to your computer and use it in GitHub Desktop.
Save shazdeh/8188033 to your computer and use it in GitHub Desktop.
Change default parameters of the gallery shortcode, disable links by default
<?php
function gallery_shortcode_defaults( $out, $pairs, $atts ) {
$out['link'] = 'none';
return $out;
}
add_filter( 'shortcode_atts_gallery', 'gallery_shortcode_defaults', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment