<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Decrease Page Load times of WordPress Blog using Google Page Speed</title>
	<atom:link href="http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/feed/" rel="self" type="application/rss+xml" />
	<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/</link>
	<description>Technology, Internet, Wordpress, Blogging</description>
	<lastBuildDate>Tue, 03 Jan 2012 08:51:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Programming Kid</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-377</link>
		<dc:creator>Programming Kid</dc:creator>
		<pubDate>Fri, 01 Jan 2010 11:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-377</guid>
		<description>Vaibhav, Google PageSpeed is an addon to Firebug. I have Yahoo&#039;s!Y-Slow installed and I use PageSpeed in combination with it. Makes for a nice combination</description>
		<content:encoded><![CDATA[<p>Vaibhav, Google PageSpeed is an addon to Firebug. I have Yahoo&#8217;s!Y-Slow installed and I use PageSpeed in combination with it. Makes for a nice combination</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vaibhav</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-376</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Fri, 01 Jan 2010 08:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-376</guid>
		<description>Traditionally, i have used Firebug with Yahoo&#039;s Y!Slow add-on to do this kind of performance tuning on a website...</description>
		<content:encoded><![CDATA[<p>Traditionally, i have used Firebug with Yahoo&#8217;s Y!Slow add-on to do this kind of performance tuning on a website&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-349</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Sun, 27 Dec 2009 08:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-349</guid>
		<description>We can also remove unnecessary PHP Executions and DB access to make our wp blog faster.</description>
		<content:encoded><![CDATA[<p>We can also remove unnecessary PHP Executions and DB access to make our wp blog faster.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Programming Kid</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-343</link>
		<dc:creator>Programming Kid</dc:creator>
		<pubDate>Sat, 26 Dec 2009 12:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-343</guid>
		<description>Thanks for the brilliant ideas Ricky. I would surely include some of your points in the post.
Sexy Bookmark plugin looks good but its a bit heavy so you are good without it. Thanks for confirming the same. :)</description>
		<content:encoded><![CDATA[<p>Thanks for the brilliant ideas Ricky. I would surely include some of your points in the post.<br />
Sexy Bookmark plugin looks good but its a bit heavy so you are good without it. Thanks for confirming the same. <img src='http://programmingkid.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricky</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-341</link>
		<dc:creator>Ricky</dc:creator>
		<pubDate>Sat, 26 Dec 2009 06:11:04 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-341</guid>
		<description>There are few points missing here.
1) background image doesn&#039;t affect the speed much until and unless it is very large. Use small image (4kb,5kb) image and u r good to go.
2) One best solution is to optimize your css. It helps a lot. Remove unnecessary styles or use short hands whenever possible.
3) Reduce number of css style sheet. If possible merge them into one.
4) Reduce the HTTP calls. I suggest you to use css styles instead of js whenever possible. CSS sprite is very good alternative. Have a look at this article to find css alternatives of js http://webanthology.net/23-pure-css-effectssolutions-to-make-javascript-angry/2009/11/26/ 
5)Reduce the number of plugins. Use related posts hack, recent posts hack, random posts hack, popular posts hack instead of plugins.
6) Reduce the usage of JS as far as possible.
7) Do not use images hosted on other websites, instead of that load it to theme/images directory and call it. I was dumb initially when I used to call images hosted on imageshack.us  website.
You can include  my points in the post if you want ;).

I did remove sexy bookmark plugin and it helped me lot to reduce the load time. Thank you for the insight. I am also working on my theme which uses all the above hacks. I&#039;ve also used SEO optimization so you do not need to add any SEO plugin (but I still prefer to use it as it gives more flexibility).</description>
		<content:encoded><![CDATA[<p>There are few points missing here.<br />
1) background image doesn&#8217;t affect the speed much until and unless it is very large. Use small image (4kb,5kb) image and u r good to go.<br />
2) One best solution is to optimize your css. It helps a lot. Remove unnecessary styles or use short hands whenever possible.<br />
3) Reduce number of css style sheet. If possible merge them into one.<br />
4) Reduce the HTTP calls. I suggest you to use css styles instead of js whenever possible. CSS sprite is very good alternative. Have a look at this article to find css alternatives of js <a href="http://webanthology.net/23-pure-css-effectssolutions-to-make-javascript-angry/2009/11/26/" rel="nofollow">http://webanthology.net/23-pure-css-effectssolutions-to-make-javascript-angry/2009/11/26/</a><br />
5)Reduce the number of plugins. Use related posts hack, recent posts hack, random posts hack, popular posts hack instead of plugins.<br />
6) Reduce the usage of JS as far as possible.<br />
7) Do not use images hosted on other websites, instead of that load it to theme/images directory and call it. I was dumb initially when I used to call images hosted on imageshack.us  website.<br />
You can include  my points in the post if you want <img src='http://programmingkid.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>I did remove sexy bookmark plugin and it helped me lot to reduce the load time. Thank you for the insight. I am also working on my theme which uses all the above hacks. I&#8217;ve also used SEO optimization so you do not need to add any SEO plugin (but I still prefer to use it as it gives more flexibility).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Programming Kid</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-333</link>
		<dc:creator>Programming Kid</dc:creator>
		<pubDate>Fri, 25 Dec 2009 18:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-333</guid>
		<description>That&#039;s so true Kevin, WordPress without plugins is very bare. Plugins enrich the functionality and visual appeal both but at the cost of page load times by increasing overheads. Google is trying to enforce the only-essential-content concept here by using Page Speed, and there are rumors that the next Page Rank update will include Page Speed results too!</description>
		<content:encoded><![CDATA[<p>That&#8217;s so true Kevin, WordPress without plugins is very bare. Plugins enrich the functionality and visual appeal both but at the cost of page load times by increasing overheads. Google is trying to enforce the only-essential-content concept here by using Page Speed, and there are rumors that the next Page Rank update will include Page Speed results too!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Rodrigues</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-329</link>
		<dc:creator>Kevin Rodrigues</dc:creator>
		<pubDate>Fri, 25 Dec 2009 16:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-329</guid>
		<description>Google Page speed also helped me reduce my page load significantly. Wordpress users cannot stay without the great plugins that are available which unfortunately increase the page load time. Images are one of the main culprits, especially the images that most of the Wordpress themes use in their backgrounds. Perhaps it is time to go back to having minimalistic websites providing better content than visual appeal.</description>
		<content:encoded><![CDATA[<p>Google Page speed also helped me reduce my page load significantly. WordPress users cannot stay without the great plugins that are available which unfortunately increase the page load time. Images are one of the main culprits, especially the images that most of the WordPress themes use in their backgrounds. Perhaps it is time to go back to having minimalistic websites providing better content than visual appeal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Programming Kid</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-323</link>
		<dc:creator>Programming Kid</dc:creator>
		<pubDate>Fri, 25 Dec 2009 10:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-323</guid>
		<description>Glad to know you that Programming Kid has helped you John. Welcome to the community.</description>
		<content:encoded><![CDATA[<p>Glad to know you that Programming Kid has helped you John. Welcome to the community.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Programming Kid</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-322</link>
		<dc:creator>Programming Kid</dc:creator>
		<pubDate>Fri, 25 Dec 2009 10:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-322</guid>
		<description>I&#039;d suggest you to use text links instead of a plugin. As you can customize the looks and have complete control over the nature of Social Bookmarking options you want your readers to have.

You can add a CSS style to them and make them look fabulous without ay plugin. I created the Promote and Share thing at Programming Kid with just some PHP and little CSS without any plugin :)</description>
		<content:encoded><![CDATA[<p>I&#8217;d suggest you to use text links instead of a plugin. As you can customize the looks and have complete control over the nature of Social Bookmarking options you want your readers to have.</p>
<p>You can add a CSS style to them and make them look fabulous without ay plugin. I created the Promote and Share thing at Programming Kid with just some PHP and little CSS without any plugin <img src='http://programmingkid.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neelmoney</title>
		<link>http://programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/#comment-321</link>
		<dc:creator>neelmoney</dc:creator>
		<pubDate>Fri, 25 Dec 2009 09:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://programmingkid.com/?p=452#comment-321</guid>
		<description>Really helpful , I know my social bookmarking plugin makes my blog ugly while loading. so now I am in the search of just another bookmarking plugin for me.</description>
		<content:encoded><![CDATA[<p>Really helpful , I know my social bookmarking plugin makes my blog ugly while loading. so now I am in the search of just another bookmarking plugin for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  programmingkid.com/decrease-page-load-times-of-wordpress-blog-using-google-page-speed/feed/ ) in 0.49240 seconds, on Feb 7th, 2012 at 9:17 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 10:17 pm UTC -->
