Skip to content

Instantly share code, notes, and snippets.

@jonschr
Last active October 18, 2015 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonschr/8b38e6186dded7b72d67 to your computer and use it in GitHub Desktop.
Save jonschr/8b38e6186dded7b72d67 to your computer and use it in GitHub Desktop.
<?php
//* Don't include the opening php tag
/**
* Add an 'envira' shortcode to all default WordPress galleries
*/
add_shortcode( 'gallery', 'prefix_envira_to_gallery_shortcode' );
function prefix_envira_to_gallery_shortcode( $atts ) {
$atts[ 'envira'] = 'true';
return gallery_shortcode( $atts );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment