getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Force Gallery functionality #317

Closed neilberry001 closed 10 years ago

neilberry001 commented 10 years ago

This needs to be rolled into the approrpriate inc file

    /**
     * Tanlinell: Force Gallery to link to media file 
     */
    function tanlinell_force_gallery_file_link( $atts )
    {
        $atts['link'] = 'file';
        return gallery_shortcode( $atts );
    }
    add_shortcode( 'gallery', 'tanlinell_force_gallery_file_link' );