EduardET

Untitled

Mar 14th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         var images = $( '.mainpost-wrap a img, .new-post a img' );
  5.         images.each( function() {
  6.             var src = $( this ).attr( 'src' ),
  7.                 newSrc = src.substring( 46 );
  8.  
  9.             if ( $( 'body' ).hasClass( 'paged' ) ) {
  10.                 $( this ).attr( 'src', newSrc );
  11.             }
  12.         } )
  13.     } );
  14. } )( jQuery );
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment