Last active
October 24, 2015 16:37
-
-
Save javiergbas/cb1a2b17bfb181571399 to your computer and use it in GitHub Desktop.
In functions.php
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
// Force galleries link to file | |
function force_gallery_links_to_file( $out ){ | |
$out['link'] = 'file'; | |
return $out; | |
} | |
add_filter( 'shortcode_atts_gallery', 'force_gallery_links_to_file' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment