Created
February 19, 2018 20:33
-
-
Save hirejordansmith/e2e6214f5773d030663c6a1276ad2cbf to your computer and use it in GitHub Desktop.
HJS // Force WordPress Images to link to Media File instead of Attachment Page Globally
This file contains 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 | |
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