EduardET

Blog Module :: remove image cropping

Mar 7th, 2018
140
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 articleImage = $('.wpc-full-image-size article .entry-featured-image-url img');
  5.         articleImage.each(function(){
  6.             var src = $(this).attr('src').slice(0,-12);
  7.             $(this).attr('src', src + '.jpg');
  8.         })
  9.     });
  10. })(jQuery);
  11. <script>
Advertisement
Add Comment
Please, Sign In to add comment