Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:42
Show Gist options
  • Select an option

  • Save nathaningram/83b32867645e477e9b16 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/83b32867645e477e9b16 to your computer and use it in GitHub Desktop.
Make Galleries Link to Media File Instead of Attachment Page
// Makes Gallery Images Link to Media File Instead of Attachment Page
add_shortcode( 'gallery', 'my_gallery_shortcode' );
function my_gallery_shortcode( $atts )
{
$atts['link'] = 'file';
return gallery_shortcode( $atts );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment