Skip to content

Instantly share code, notes, and snippets.

@iscat
Created May 18, 2013 04:20
Show Gist options
  • Save iscat/5603220 to your computer and use it in GitHub Desktop.
Save iscat/5603220 to your computer and use it in GitHub Desktop.
<?php // Add Lightbox to Wordpress Gallery
add_filter( 'wp_get_attachment_link', 'prettyPhoto');
function prettyPhoto ($content) {
$content = preg_replace("/<a/","<a rel=\"prettyPhoto[slides]\" class=\"preloader\"",$content,1);
return $content;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment