If you’ve noticed, we were on a massive campaign to redesign the blog as well as make it follow all the standards. I’ll update you more on this during the coming weekend. Keep checking !
Now as per experts, you shouldn’t have so many images on your blog. This not only increases the time to load the page but also so many cluttered images degrades the overall design of your blog. Also if margins are not set properly then it can make your blog’s front page look terrible.
Well, the trick is very simple. If you know how to edit themes in Wordpress, then just open the home.php or whatever front page php template you have. you’ll see the line
the_content(’<some text here>’)
Replace the above line with :
echo strip_tags(get_the_content(’<some text here>’), ‘<p><a><h2><blockquote><code><ul><li><i><em><strong>‘)
where the bold text is the allowable tags. And since the allowable tags doesn’t contain <img> tag, it’ll be ignored and your image will be stripped. If you use any other HTML tags then insert it in the list.
You can use the same trick if you want to strip images from your archive pages or any other page where the_content() is used.

Great tip. Will use it to strip the images.