EduardET

Untitled

May 25th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         /* Set "_blank" attribute for all social links */
  5.         var social_icons_link = $( ".et-social-icon a" );
  6.         social_icons_link.each( function() {
  7.             $( this ).attr( 'target', '_blank' )
  8.         } );
  9.  
  10.         /* Add Image Caption (ALT text) to all Images from Gallery Module - set the css class of wpc-gm-caption*/
  11.         var galleryItem = $( '.wpc-gm-caption .et_pb_gallery_item .et_pb_gallery_image' );
  12.         if ( galleryItem.length ) {
  13.             galleryItem.each( function() {
  14.                 var img = $( this ).find( 'img' ),
  15.                     caption = img.attr( 'alt' );
  16.                 $( '<p class="wpc-caption">' + caption + '</p>' ).insertAfter( img );
  17.             } )
  18.         }
  19.     } );
  20. } )( jQuery );
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment