Skip to content Skip to sidebar Skip to footer

Change Size Of The Media:thumbnail On Blogger Rss Feed

Is there any way to resize the media:thumbnail URL on the RSS feed(Blogger) At the moment it's at the default size of height 72px and width 72px. I have tried adding this javascri

Solution 1:

Here's how i did it:

  $img = el.find("thumbnail").attr("url");  //Get thumnail image from rss feed
  $newText = $img.replace(/\/s72\-c/, "");//replace /s72\-c with nothing
  console.log($newText);

Post a Comment for "Change Size Of The Media:thumbnail On Blogger Rss Feed"