Guest User

Untitled

a guest
Aug 22nd, 2012
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. /*-----------------------------------------------------------------------------------*/
  2. /* Add rel="lightbox" to image links if the lightbox is enabled */
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. if ( jQuery( 'body' ).hasClass( 'has-lightbox' ) && ! jQuery( 'body' ).hasClass( 'portfolio-component' ) ) {
  6. jQuery( 'a[href$=".jpg"], a[href$=".jpeg"], a[href$=".gif"], a[href$=".png"]' ).each( function () {
  7. var imageTitle = '';
  8. if ( jQuery( this ).next().hasClass( 'wp-caption-text' ) ) {
  9. imageTitle = jQuery( this ).next().text();
  10. }
  11.  
  12. jQuery( this ).attr( 'rel', 'lightbox' ).attr( 'title', imageTitle );
  13. });
  14.  
  15. jQuery( 'a[rel^="lightbox"]' ).prettyPhoto({social_tools: false});
  16. }
Advertisement
Add Comment
Please, Sign In to add comment