<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>performance &#8211; Blackbams Blog</title>
	<atom:link href="https://blog.blackbam.at/tag/performance/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.blackbam.at</link>
	<description>development - digital arts - internet</description>
	<lastBuildDate>Wed, 29 Apr 2015 17:15:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>WordPress Page Speed Optimization for SEO</title>
		<link>https://blog.blackbam.at/2015/03/29/wordpress-page-speed-optimization-for-seo/</link>
					<comments>https://blog.blackbam.at/2015/03/29/wordpress-page-speed-optimization-for-seo/#respond</comments>
		
		<dc:creator><![CDATA[Blackbam]]></dc:creator>
		<pubDate>Sun, 29 Mar 2015 01:07:31 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
		<guid isPermaLink="false">https://blog.blackbam.at/?p=2210</guid>

					<description><![CDATA[Without any doubt it is important for every website to be as fast as possible in order to save bandwith, visitors time and in terms of SEO. As I recently had to optimize various WordPress websites regarding their page speed delivery here is what I did. Getting to know your current website performance First of [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Without any doubt it is important for every website to be as fast as possible in order to save bandwith, visitors time and in terms of SEO. As I recently had to optimize various WordPress websites regarding their page speed delivery here is what I did.</p>
<h2>Getting to know your current website performance</h2>
<p>First of all you have to find out how well your website was built and how well speed optimization has been performed. Therefore there are various tool you may use:</p>
<ol>
<li>Google PageSpeed Insights (<a href="https://developers.google.com/speed/pagespeed/">https://developers.google.com/speed/pagespeed/</a>)</li>
<li>Pingdom Website Speed Test (<a href="http://tools.pingdom.com/fpt/">http://tools.pingdom.com/fpt/</a>)</li>
<li>YSlow Browser Plugin (<a href="http://yslow.org/">http://yslow.org/</a>)</li>
<li>and many more&#8230;.</li>
</ol>
<p>If you do not do nice speed optimization yet than your results will probably be far away from good.</p>
<h2>Common performance problems and how to solve them</h2>
<p>In the documentation of these tools you will find detailed description on how to improve your website speed including &#8230;</p>
<ul>
<li>optimize your images / media</li>
<li>reduce server response time</li>
<li>minify all files deliverd (html/css/javascript/svg/&#8230;)</li>
<li>reduce the number of http requests</li>
<li>avoid / reduce blocking resources (js/css)</li>
<li>compression</li>
<li>prioritizing visible contents</li>
<li>&#8230;</li>
</ul>
<h2>WordPress Page Speed Optimization: Hands on</h2>
<p>The great thing about WordPress is that there are like 10 Plugins for every possible thing you can imagine. An important task for WordPress developers is to find and configure the appropriate ones while still knowing which things to do manually. With the following combination of Plugins and Configurations I have created really nice results in LAMP environments:</p>
<h3>Reducing Images</h3>
<p><a href="https://wordpress.org/plugins/ewww-image-optimizer/">EWWW Image Optimizer</a> , <a href="https://code.google.com/p/timthumb/">Timthumb</a> (resizing &amp; quality of 70)</p>
<h3>Minification</h3>
<p><a href="http://sass-lang.com/"><strong>SASS</strong></a> or <a href="http://lesscss.org/"><strong>LESS</strong></a> with -x compress option, <a href="https://wordpress.org/plugins/autoptimize/"><b>Autopimize WordPress Plugin</b></a>.</p>
<p style="clear: both;">
<p>Note: Most probably you will have to organize your scripts and styles in some appropriate manner in order to use the full power of this Plugins. Of course you also have the possibility to minify all your files manually.</p>
<h3>Avoid / reduce blocking ressources</h3>
<p>This is a task is one of the most complex and you probably have to do it manually. Write clean CSS and keep it small. Do not use too much external scripts and combine these into as few as possible.</p>
<h3>Reduce Server response time: Caching</h3>
<p>My favorite Plugin for WordPress is <a href="https://wordpress.org/plugins/zencache/"><strong>ZenCache</strong></a> and if you do not have too much dynamic contents it is probably recommendable to allow client-side cache within the options. However there are some probably nice alternatives like W3 total cache. Furthermore you can use your .htaccess on Apache (see below).</p>
<h3>Compression</h3>
<p>Apache has a module which is called<strong> mod_deflate</strong>. An example of a WordPress .htaccess file which has been built for website speed optimization is shown below &#8211; go adjust it to your needs:</p>
<pre lang="bash">RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]



# Enable expirations
ExpiresActive On 
# Default directive
ExpiresDefault "access plus 1 week"
# My favicon
ExpiresByType image/x-icon "access plus 1 week"
# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access plus 1 month"
# Javascript
ExpiresByType application/javascript "access plus 1 year"




# BEGIN Gzip Compression
AddEncoding gzip .gz
&lt;filesmatch "\.js\.gz$"&gt;
AddType "text/javascript" .gz

&lt;filesmatch "\.css\.gz$"&gt;
AddType "text/css" .gz

 
# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript image/svg+xml application/x-font-woff application/font-woff
AddType x-font/otf .otf 
AddType x-font/ttf .ttf 
AddType x-font/eot .eot 
AddType x-font/woff .woff 
AddType image/x-icon .ico 
AddType image/png .png
AddType image/jpeg .jpg





</pre>
<p>Hope this tutorial may be useful for you. Any improvement ideas are welcome.</p>
<p><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fblog.blackbam.at%2F2015%2F03%2F29%2Fwordpress-page-speed-optimization-for-seo%2F&#038;title=WordPress%20Page%20Speed%20Optimization%20for%20SEO" data-a2a-url="https://blog.blackbam.at/2015/03/29/wordpress-page-speed-optimization-for-seo/" data-a2a-title="WordPress Page Speed Optimization for SEO"><img src="https://static.addtoany.com/buttons/share_save_120_16.png" alt="Share"></a></p>]]></content:encoded>
					
					<wfw:commentRss>https://blog.blackbam.at/2015/03/29/wordpress-page-speed-optimization-for-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
