Created
December 28, 2015 02:42
-
-
Save nathaningram/83b32867645e477e9b16 to your computer and use it in GitHub Desktop.
Make Galleries Link to Media File Instead of Attachment Page
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
| // 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