Skip to content

Instantly share code, notes, and snippets.

@amdrew
Last active December 19, 2015 10:48
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 amdrew/5942614 to your computer and use it in GitHub Desktop.
Save amdrew/5942614 to your computer and use it in GitHub Desktop.
Add colorbox to the lightbox array in Easy Image Gallery
<?php
function my_theme_easy_image_gallery_lightbox( $lightboxes ) {
// the option that is saved to the database, and the label that appears in the select menu
$lightboxes['colorbox'] = 'Colorbox';
return $lightboxes;
}
add_filter( 'easy_image_gallery_lightbox', 'my_theme_easy_image_gallery_lightbox' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment