<?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>1stwebdesigner - Graphic and Web Design Blog &#187; optimization</title>
	<atom:link href="http://www.1stwebdesigner.com/tag/optimization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1stwebdesigner.com</link>
	<description>1stwebdesigner is a design blog dedicated to bloggers, freelancers, web-developers and designers. Topics focus on web design and inspirational articles.</description>
	<lastBuildDate>Sun, 12 Feb 2012 13:09:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Performance Optimization: How to Load your javascript faster!</title>
		<link>http://www.1stwebdesigner.com/design/load-javascript-faster/</link>
		<comments>http://www.1stwebdesigner.com/design/load-javascript-faster/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:00:17 +0000</pubDate>
		<dc:creator>przemek</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[labjs]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[packing]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23143</guid>
		<description><![CDATA[Javascript is now extremely important. Some sites use javascript for a tiny enchantments, many of today&#8217;s webapps are depending on it, some of them are even totally written in js. In this article I&#8217;ll point out some important rules, how to use your javascript, which tools to use and what benefits you&#8217;ll gain from it. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/development/load-javascript-faster/"><img class="size-full wp-image-22047 alignleft" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/load-js-faster_150.png" alt="Load your javascript faster" /></a>Javascript is now extremely important. Some sites use javascript for a tiny enchantments, many of today&#8217;s webapps are depending on it, some of them are even totally written in js. In this article I&#8217;ll point out some important rules, how to use your javascript, which tools to use and what benefits you&#8217;ll gain from it.</p>
<p><span id="more-23143"></span></p>
<h2>Keep your code at minimum</h2>
<p><img style="border-width: 0px;" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/keep-your-code-at-minimum.png" border="0" alt="Keep your code at minimum" width="570" /></p>
<p>Don&#8217;t rely on javascript. Don&#8217;t duplicate your scripts. Treat it like a candy-tool to make things more pretty. Don&#8217;t bloat your site with s**t-loads of <em>javascript</em>. Use it only when necessary. Only when it <em>really</em> improves user experience.</p>
<h3>Minimize DOM access</h3>
<p>Accessing DOM elements with JavaScript is easy, code is more readable, but it&#8217;s slow. Here are some tips: <em>Limit your layout fixing with javascript</em>, <em>cache references to accessed elements</em>. Sometimes when your site is depending so much on <code>DOM</code> modifications you should consider limiting your markup. It&#8217;s a good reason to switch to HTML5 and leave those old XHTML, HTML4 behind. You can check the number of your <code>DOM</code> elements by typing in Firebug&#8217;s console: <code>document.getElementsByTagName('*').length</code></p>
<h3>Compress your code</h3>
<blockquote cite="http://dean.edwards.name/weblog/2007/08/js-compression/"><p>The most efficient way to serve compressed JavaScript is to first run your code through a JavaScript compressor that shrinks variable and argument names, and then serve the resulting code using gzip compression.</p></blockquote>
<p>Well, I don&#8217;t compress my <code>main.js</code>, but check if you have any jQuery plugins that are not compressed, do it (remember to keep author&#8217;s notes). Below I listed some options for compression.</p>
<ul>
<li><a rel="nofollow" href="http://yuilibrary.com/downloads/#yuicompressor">YUI Compressor</a> (my favorite, used by jQuery team), beginners <a title="Extreme JavaScript Compression With YUI Compressor" rel="nofollow" href="http://www.slideshare.net/nzakas/extreme-javascript-compression-with-yui-compressor">guide</a>, <a rel="nofollow" href="http://vilimpoc.org/research/js-speedup/">second guide</a> and <a rel="nofollow" href="http://developer.yahoo.com/yui/compressor/">official site</a></li>
<li><a rel="nofollow" href="http://dean.edwards.name/packer/">Dean Edwards Packer</a></li>
<li><a rel="nofollow" href="http://crockford.com/javascript/jsmin">JSMin</a></li>
</ul>
<p><strong>GZip Compression</strong>: Idea behind this is to reduce time of transferring data between browser and server. When it&#8217;s done you get your file with <code>Accept-Encoding: gzip,deflate</code> header. It has some disadvantages though. It takes: CPU on both server-side and client side (to compress and uncompress) and disc space.</p>
<p><strong>Avoid <code>eval()</code></strong>: While sometimes it may bring some time efficiency, it&#8217;s definitely wrong practice. It makes your code look more dirty and it crashes out most of the compressors.</p>
<h2>Tool to speed up <em>javascript</em> loading &#8211; <a href="http://labjs.com/">Lab.js</a></h2>
<p>There are many awesome tools that could speed up your javascript loading time. One is worth mentioning — <strong>Lab.js</strong>.</p>
<p>With <strong>LAB.js</strong> (Loading And Blocking JavaScript) you can load your javascript files in parallel, speeding up the total loading process. What is more you can also set up certain order for scripts to be loaded, so no dependencies are broken. Also, the developer declares a 2x speed improvement on his site.</p>
<h2>Using proper CDN</h2>
<p>Many webpages now use <strong>CDN</strong> (Content delivery network). It improves your caching, because everybody can use it. It can also save you some bandwidth. You can easy ping or <em>firebug</em> those servers to check from where you get data faster. Choose CDN by matching your readers localization. Remember to use public repositories when it&#8217;s possible.</p>
<p>Some CDN options for <em>jQuery</em>:</p>
<ul>
<li><code>http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js</code> &#8211; Google Ajax, information about <a href="http://code.google.com/apis/libraries/devguide.html#Libraries">more libraries</a></li>
<li><code>http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js</code> &#8211; Microsoft&#8217;s CDN</li>
<li><code>http://code.jquery.com/jquery-1.4.2.min.js</code> &#8211; Edgecast (mt)</li>
</ul>
<h2>Load your javascript at the end of page</h2>
<p><img style="border-width: 0px;" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/load-you-js-at-the-end.png" border="0" alt="Load your javascript at the end" width="570" /></p>
<p>Very good practice if you care about user and him/her not leaving your page because of slow internet connection. Usability and user at first, javascript at the end. This may be painful, but you should be prepared for users with disabled javascript. You may put some javascript to be loaded in <code>head</code> section, but only if it&#8217;s loading asynchronously.</p>
<h2>Load tracking asynchronously</h2>
<p>This one is very important. Most of us are using <em>Google Analytics</em> for statistics. It&#8217;s good. Now look where you put your tracking code. Is it in head section? Is it using <code>document.write</code>? Then you should blame yourself for not using <em>asynchronous tracking code for Google Analytics</em>.</p>
<p>This is what asynchronous tracking code for Google Analytics looks like. We must acknowledge that it uses <code>DOM</code> instead of <code>document.write</code>, which may be better for you. It detects some of the events before page load which is very important. Now think of all the users closing your page before it even loaded. The cure of missing <em>page views</em> has been found.</p>
<pre class="brush: jscript; title: ; notranslate">

	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-XXXXXXX-XX']);
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	})();
</pre>
<p>Don&#8217;t using <em>GA</em>? It&#8217;s not a problem, most of today&#8217;s analytics providers will allow you to use asynchronous tracking.</p>
<h2>Ajax Optimization</h2>
<p><img style="border-width: 0px;" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/ajax-optimization.jpg" border="0" alt="Ajax Optimization" width="570" /></p>
<p>Ajax request have great impact on your site&#8217;s performance. Below I pointed some tips about ajax optimization.</p>
<h3>Cache your ajax</h3>
<p>Look at your code. Is your ajax cacheable? Well, it depends on data, but mostly your ajax requests should be cacheable. In <a title="jQuery Ajax API" href="http://api.jquery.com/jQuery.ajax/">jQuery</a> your requests are cached by default, not including <code>script</code> and <code>jsonp</code> dataType.</p>
<h3>Use GET for Ajax Requests</h3>
<p><code>POST</code> type requests takes two TCP packets to send (headers sent first, data next). <code>GET</code> type request takes only one packet to send (which may depend on your amount of cookies). So while your URL length is less than <abbr title="IE Limitation">2K</abbr> and you want to request some data use <code>GET</code>.</p>
<h2>Use ySlow</h2>
<p><img style="border-width: 0px;" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/yslow-tool.png" border="0" alt="Use Free ySlow Tool" width="570" /></p>
<p>It&#8217;s both simple and extremely powerful when it comes to performance. It grades your website and shows you what you need to correct, what should be taken care of.</p>
<h2>Bonus: Pack your javascript into PNG File</h2>
<p><img style="border-width: 0px;" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/08/jquery-prototype-packed-into-image.png" border="0" alt="jQuery and Prototype Packed into one image" width="570" /></p>
<blockquote cite="http://ajaxian.com/archives/want-to-pack-js-and-css-really-well-convert-it-to-a-png-and-unpack-it-via-canvas"><p>Imagine adding your JS and CSS to the end of an image and cropping it in CSS to have all the info you need in an app in a single HTTP request.</p></blockquote>
<p>I have recently found this. What is basically does it packs up your javascript/css data into PNG file. After that you can unpack it by using the canvas API&#8217;s <code>getImageData()</code>. What is more it&#8217;s very efficient. You can gain about <strong>35% compression without minifying your data</strong>. Lossless compression! I must point out that for larger scripts you can feel &#8220;some&#8221; load time while image is pointed to canvas and pixels are read.</p>
<p>For more information about this one check out this <a title="Compression using Canvas and PNG-embedded data" href="http://blog.nihilogic.dk/2008/05/compression-using-canvas-and-png.html">article from 2008</a>.</p>
<h2>Final Thoughts</h2>
<p>Hope you guys liked this article. If yes, remember to share it and to say hello to me on twitter. Stay in tune for some further posts about serious performance optimization.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/design/load-javascript-faster/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>20 Most Valuable SEO Plugins For WordPress</title>
		<link>http://www.1stwebdesigner.com/wordpress/top-seo-plugins-wordpress/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/top-seo-plugins-wordpress/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 10:00:42 +0000</pubDate>
		<dc:creator>Srikanth AD</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=11110</guid>
		<description><![CDATA[WordPress is one among the popular weblog publishing platforms available on the web. There are millions of blogs based on WordPress. Search engines are the best way to promote, publicize and help people discover your content. Thus, it is very important to optimize your blog or web site so that search engines can discover your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/top-seo-plugins-wordpress" target="_self"><img class="alignleft" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/03/Mobile-Interface-Plugins-for-Wordpress-and-tools.jpg" alt="Mobile-Interface-Plugins-for-Wordpress-and-tools" width="147" height="147" /></a><a href="http://www.1stwebdesigner.com/category/wordpress/" target="_blank">WordPress</a> is one among the popular weblog publishing platforms available on the web. There are millions of <a href="http://www.1stwebdesigner.com/tag/blog/" target="_blank">blogs</a> based on WordPress.</p>
<p>Search engines are the best way to promote, publicize and help people discover your content. Thus, it is very important to optimize your blog or web site so that search engines can discover your content and understand how relevant it is to specific search queries.<span id="more-11110"></span></p>
<p>WordPress, in addition to providing you with the state-of-the-art publishing platform, also provides plethora of <a href="http://www.1stwebdesigner.com/tag/plugins/" target="_blank">plugins</a> for <a href="http://www.1stwebdesigner.com/wordpress/wordpress-seo-tips-tricks-plugins/" target="_blank">Search Engine Optimization</a>(SEO). Some plugins are really effective whereas some are not. To help you find the right plugin for your web site, we have composed some of the best <a href="http://www.1stwebdesigner.com/wordpress/important-tips-optimize-wordpress-search-engines/" target="_blank">SEO</a> plugins.</p>
<h2><a title="All-In-One SEO" rel="homepage" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/"></a><a title="All-In-One SEO" rel="homepage" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">1. All in one SEO Pack</a></h2>
<p style="text-align: left;">One among the most popular and widely discussed plugins for WordPress. This plugin is easy to use and is compatible with most WordPress plugins. It works as an overall SEO plugin &#8211; automatically generating <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=79812" target="_blank">META tags</a> and optimizes your titles for search engines and helps you in avoiding duplicate content. This plugin also enables you to manually include META tags (title, description and keywords) for each page and post in your web site.<br />
<img class="size-full wp-image-108    aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/all-in-one-seo-screenshot3.png" alt="" /></p>
<h2><a title="HeadSpace2" rel="homepage" href="http://urbangiraffe.com/plugins/headspace2/">2. HeadSpace2</a></h2>
<p style="text-align: left;">A powerful all-in-one plugin to manage meta-data and handle a wide range of SEO tasks. It allows you to tag your posts, create custom titles and descriptions, thereby improves your page ranking and relevance on search engines. You can also change the theme or load plugins on specific pages and much more. This plugin is available in multiple languages.<br />
<img class="size-full wp-image-109  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/headspace-2-page-settings4.png" alt="headspace-2-page-settings" /></p>
<h2><a title="Platinum SEO" href="http://wordpress.org/extend/plugins/platinum-seo-pack/" target="_blank">3. Platinum SEO plugin</a></h2>
<p style="text-align: left;">An all-in-one SEO plugin with a host of features like automatic 301 redirects for permalink changes, auto generation of META tags, avoid duplicate content, SEO optimized post and page titles and a whole lot of other features.<br />
<img class="size-full wp-image-110  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/platinum-seo-options-page6.png" alt="platinum-seo-options-page" /></p>
<h2><a title="TGFI.net SEO" href="http://wordpress.org/extend/plugins/tgfinet-seo/" target="_blank">4. TGFI.net SEO WordPress Plugin</a></h2>
<p>This plugin is a fairly modified version of the all-in-one SEO Pack. The unique feature of this plugin is that, it&#8217;s directed at people who use WordPress as a CMS. It can auto generate titles, descriptions and keywords when overrides are not present and also avoids duplicate content.</p>
<h2><a title="Google XML Sitemaps" href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">5. Google XML Sitemaps</a></h2>
<p style="text-align: left;">Generates an <a href="http://www.xml-sitemaps.com/" target="_blank">XML sitemap</a> supported by <a href="http://google.com" target="_blank">Google</a>, <a href="http://bing.com" target="_blank">Bing</a>, <a href="http://Yahoo.com" target="_blank">Yahoo</a> and <a href="http://Ask.com" target="_blank">Ask</a>. Sitemaps make it much easier for crawlers to see the complete structure of your web site and retrieve more efficiently. It also notifies all major search engines every time you create a new post. You can either choose to write a normal XML file or a zipped file. In case of any errors, you can rebuild the sitemap manually. As a remark, <a href="http://pingomatic.com/" target="_blank">Pingomatic</a> can be used to ping your blog to multiple search engines and other specialized services.<br />
<img class="size-full wp-image-113  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/google-xml-sitemap-generator2.png" alt="google-xml-sitemap-generator" /></p>
<h2><a title="Dagon Design Sitemap Generator" href="http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/" target="_blank">6. Sitemap Generator</a></h2>
<p style="text-align: left;">Creates a highly customizable sitemap for your WordPress powered web site. It enables you to choose what to show and what not to including &#8211; what order to list the items in. It supports multi-level categories, pages and permalinks.<br />
<img class="size-full wp-image-114    aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/dd-sitemap-generator.jpg" alt="dd-sitemap-generator" /></p>
<h2><a title="SEO Slugs" href="http://wordpress.org/extend/plugins/seo-slugs/" target="_blank">7. SEO Slugs</a></h2>
<p>Slugs are long filenames assigned to your posts. Ex: http://yourblog.com/what-you-can-do-immediately-for-higher-rankings. This plugin <a href="http://searchenginewatch.com/2156061" target="_blank">removes common words</a> like &#8216;a&#8217;, &#8216;the&#8217;,'in&#8217;,'what&#8217;,'you&#8217; etc. from the automatically assigned post slug to make it more Search Engine friendly.</p>
<h2><a title="SEO Post Links" href="http://www.maxblogpress.com/plugins/spl/" target="_blank">8. SEO Post Links</a></h2>
<p style="text-align: left;">This plugin works similar to SEO slugs. It shortens the post slug and retains only the necessary keywords making it Search Engine friendly.  It allows you to choose the longest number of characters in your post slug and also remove unnecessary words.<br />
<img class="size-full wp-image-116  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/seo-post-link-options.jpg" alt="seo-post-link-options" /></p>
<h2><a title="Automatic SEO links" href="http://wordpress.org/extend/plugins/automatic-seo-links/" target="_blank">9. Automatic SEO links</a></h2>
<p>Just choose a word or a phrase for automatic linking and this plugin will replace all matches in the posts of your weblog. It allows you to set the title, target and rel. for each link. You can also set the <a href="http://googlewebmastercentral.blogspot.com/2007/03/get-more-complete-picture-about-how.html" target="_blank">anchor text</a> and choose if it should be no-follow or not. If there are repeated words, only the first matched word in the post will be replaced.</p>
<p style="text-align: center;"><img class="size-full wp-image-118  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/automatic-seo-links-new-link.jpg" alt="automatic-seo-links-new-link" /></p>
<h2><a title="SEO Smart Links" href="http://wordpress.org/extend/plugins/seo-automatic-links/" target="_blank">10. SEO Smart links</a></h2>
<p>Automatically links keywords and phrases on your blog with corresponding posts, pages, categories or tags on your blog. It allows you to set up your own <a href="http://www.ibm.com/developerworks/web/library/wa-seo2/" target="_blank">keywords</a> and a list of matching URLs and also set the <a href="http://microformats.org/wiki/rel-nofollow" target="_blank">no-follow attribute</a>. You can customize it according to your needs through the <a href="http://codex.wordpress.org/Administration_Panels" target="_blank">Administration Settings Panel</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-119  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/seo-smart-links-options-page.jpg" alt="seo-smart-links-options-page" /></p>
<h2><a title="WP Backlinks" href="http://www.linksback.org/wordpress/wordpress-plugins/wp-backlinks-wordpress-plugin/" target="_blank">11. WP Backlinks</a></h2>
<p>This plugin helps in making the task of link exchange very simple. Once installed, it puts a small form on the sidebar of your blog that allows webmasters and other bloggers to quickly submit a link for link exchange. The plugin will spider the webmasters site for a reciprocal link and if everything is successful you will have made a successful link exchange. It also has the option of displaying different links on different pages.<br />
<a title="SEO Title Tag" href="http://wordpress.org/extend/plugins/seo-title-tag/" target="_blank"></a></p>
<h2><a title="SEO Title Tag" href="http://wordpress.org/extend/plugins/seo-title-tag/" target="_blank">12. SEO Title Tag</a></h2>
<p style="text-align: left;">SEO Title Tag makes it easy to optimize the title tags across your WordPress powered blog. It allows you to override a page&#8217;s title tag with a custom one, mass editing of <a href="http://www.w3.org/TR/REC-html40/struct/links.html" target="_blank">title tags</a>, title tags for 404 error pages and much more.<br />
<img class="size-full wp-image-120  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/seo-title-tag-options.jpg" alt="seo-title-tag-options" /></p>
<h2><a title="404 SEO" href="http://wordpress.org/extend/plugins/404-plugin/" target="_blank">13. 404 SEO plugin</a></h2>
<p>Gives you a smart, customized &#8216;Page Not Found(404)&#8217; error message and automatically displays links to relevant pages on your site, based on the words in the URL that was not found.</p>
<h2><a title="Redirection" href="http://wordpress.org/extend/plugins/redirection/" target="_blank">14. Redirection</a></h2>
<p style="text-align: left;">This plugin helps you to manage 301 redirections, to keep track of <a href="http://www.smashingmagazine.com/2009/01/29/404-error-pages-one-more-time/" target="_blank">404 errors</a> and also correct them. It also allows you to monitor your redirects by giving you full logs of all redirected URLs and also RSS feed for 404 errors. Automatically adds a redirection when a posts URL changes.<br />
<img class="size-full wp-image-121  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/redirection-plugin.jpg" alt="redirection-plugin" /></p>
<h2><a title="Simple Submit" href="http://wordpress.org/extend/plugins/simple-submit/" target="_blank">15. Simple Submit SEO/Social Bookmarking Plugin</a></h2>
<p>This plugin adds submission links for Digg, Delicious, Buzz, and Stumble to pages and posts. It allows you to choose whether to display it on home page, post page, all pages etc.</p>
<h2><a title="AntiSocial" href="http://courtneytuttle.com/2007/06/21/antisocial-wordpress-plugin-reviewed-install-guide/" target="_blank">16. AntiSocial</a></h2>
<p>Adding this plugin on your blog allows readers to submit your posts to Digg, Reddit, Del.Icio.Us, StumbleUpon and other <a href="http://www.1stwebdesigner.com/freebies/amazing-free-social-media-icon-packs/" target="_blank">social bookmarking</a> sites. It adds a row of buttons with links to the sites and also adds a nofollow to the links. It is actually a hacked version of the famous plugin Socialable.</p>
<h2><a title="AddToAny : Share/Bookmark/Email Buttons" href="http://wordpress.org/extend/plugins/add-to-any/" target="_blank">17. AddToAny</a></h2>
<p>Helps your readers share,save,email and also bookmark your posts and pages. It supports over hundred social bookmarking and sharing sites. It comes with a smart menu that places the services that visitors use  a lot  at the top of the menu based on their browsing and usage history.</p>
<p style="text-align: center;"><img class="size-full wp-image-122  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/add-to-any-screenshot1.png" alt="add-to-any-screenshot" /></p>
<h2><a title="SEO Friendly Images" href="http://wordpress.org/extend/plugins/seo-image/" target="_blank">18. SEO Friendly Images</a></h2>
<p style="text-align: left;">This plugin helps in making your images SEO friendly. It automatically updates all images with a proper <a href="http://www.labnol.org/internet/using-alt-img-attributes-in-image-tags/5450/" target="_blank">ALT and TITLE.</a> ALT acts as a description for your image and TITLE is the tooltip text displayed when the mouse is over the image. These attributes are one of the important part of SEO.<br />
<img class="size-full wp-image-123  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/seo-friendly-images-plugin.jpg" alt="seo-friendly-images-plugin" /></p>
<h2><a title="Robots Meta" href="http://wordpress.org/extend/plugins/robots-meta/" target="_blank">19. Robots Meta</a></h2>
<p style="text-align: left;">A very easy solution to add <a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=156449" target="_blank">robot</a> tags to your WordPress pages. It allows you to add meta tags to individual posts and pages, prevent indexing of your comments, login and admin pages.<br />
<img class="size-full wp-image-125  aligncenter" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/04/robots-meta-configuration1.jpg" alt="robots-meta-configuration" /></p>
<h2><a title="Nofollow Case by Case" href="http://wordpress.org/extend/plugins/nofollow-case-by-case/" target="_blank">20. Nofollow Case by Case</a></h2>
<p>Allows you to selectively apply or remove nofollow attributes to comment links, comment author links, pingbacks and <a href="http://www.optiniche.com/blog/117/wordpress-trackback-tutorial/" target="_blank">trackbacks</a> and also open the comment links in a new window. If not configured it automatically strips nofollow attributes from all your comment links and comment author links.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/top-seo-plugins-wordpress/feed/</wfw:commentRss>
		<slash:comments>86</slash:comments>
		</item>
		<item>
		<title>12 Web Design Directories To Improve Your SEO</title>
		<link>http://www.1stwebdesigner.com/design/12-web-design-directories-to-improve-your-seo/</link>
		<comments>http://www.1stwebdesigner.com/design/12-web-design-directories-to-improve-your-seo/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 18:56:43 +0000</pubDate>
		<dc:creator>Andy Walpole</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=3991</guid>
		<description><![CDATA[List of Web Design Directories Links from niche directories are of more value in SEO than submitting to general directories, and there are a number of specialized directories catering exclusively for web designers. Below are some of those. Many of these require a reciprocal link and which have fallen out of favor since Google declared [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.1stwebdesigner.com/development/12-web-design-directories-to-improve-your-seo" target="_self"><img class="alignleft" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/title-web-design-directories.jpg" alt="title-web-design-directories" width="150" height="150" /></a>List of Web Design Directories Links from niche directories are of more value in SEO than submitting to general directories, and there are a number of specialized directories catering exclusively for web designers. Below are some of those.</p>
<p style="text-align: left;">Many of these require a reciprocal link and which have fallen out of favor since Google declared against &#8220;excessive reciprocal linking&#8221;; but in moderation it is fine as <a href="http://www.seroundtable.com/archives/015764.html">Matt Cutts talked about in 2007</a> &#8211; &#8220;Trading links is natural and it&#8217;s natural to have reciprocal links. At some level, natural reciprocal links happen, but if you do it way too often, it looks artificial.&#8221;<span id="more-3991"></span></p>
<h2>1.<a href="http://www.dexigner.com/directory/" target="_blank"> DesignDirectory</a></h2>
<p><a href="http://www.dexigner.com/directory/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/design-directory.gif" alt="Design Directory" width="328" height="40" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2001</li>
<li><strong>Indexed Pages in Google:</strong> 15,400</li>
<li><strong>Backlinks in Yahoo:</strong> 155,988</li>
<li><strong>PageRank:</strong> 6</li>
<li><strong>Link Status:</strong> Nofollow</li>
<li><strong>Quantcast Ranking:</strong> <a href="http://www.quantcast.com/dexigner.com">24,796</a></li>
<li><strong>Submission rules:</strong> Read the submission rules <a href="http://www.dexigner.com/directory/addnew/">here</a></li>
</ul>
<h2>2.<a href="http://www.web-design-directory.org.uk" target="_blank"> Web Design Directory org dot uk</a></h2>
<p><a href="http://www.web-design-directory.org.uk" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/webdesigndirectory.jpg" alt="Web Design Directory" width="196" height="80" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2008</li>
<li><strong>Indexed Pages in Google:</strong> 319</li>
<li><strong>Backlinks in Yahoo:</strong> 837</li>
<li><strong>PageRank:</strong> 4</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Reciprocal link required.</li>
</ul>
<p>This is more than a directory and is intended as means for a client to quickly receive a quote for a job from a wide range of design companies. UK only.</p>
<h2>3.<a href="http://www.webdesignstuff.com/" target="_blank"> Web Design Stuff</a></h2>
<p><a href="http://www.webdesignstuff.com/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/wds.gif" alt="Web Design Stuff" width="88" height="88" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2006</li>
<li><strong>Indexed Pages in Google:</strong> 1,850</li>
<li><strong>Backlinks in Yahoo:</strong> 44.301</li>
<li><strong>PageRank:</strong> 5</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free to submit to.</li>
</ul>
<p>The submission rules read: &#8220;If you are submitting a portfolio, design firm, or resource site, please select the most appropriate category and do not use &#8220;Best Design Showcase&#8221;. We will select the best to be placed in that category. You may however submit client sites or sites you think do have the best design to be placed in &#8220;Best Design Showcase&#8221;. Not all sites will be approved. Only well designed or sites with useful resources will be considered.&#8221;</p>
<h2>4.<a href="http://www.web-development.com"> Web-Development.com</a></h2>
<p><a href="http://www.web-development.com" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/web-development.gif" alt="web-development.com" width="340" height="64" /></a></p>
<ul>
<li><strong>Year Site Created:</strong>1997</li>
<li><strong>Indexed Pages in Google:</strong> 11,400</li>
<li><strong>Backlinks in Yahoo:</strong> 1,639</li>
<li><strong>PageRank:</strong> 5</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free to submit to but a reciprocal is required. From the submission page:</li>
</ul>
<p>Web-Development.com is a directory of Web design companies. We ONLY add Web design company websites to our directory. In the future we plan to add additional categories for related companies such as Web hosting companies and domain name registrars, but at this time we are only accepting submissions for Web design companies.</p>
<h2>5.<a href="http://aawebmasters.com/directory/" target="_blank"> American Association of Webmasters Directory</a></h2>
<p><a href="http://aawebmasters.com/directory/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/aawmlogoCEO.gif" alt="American Association of Webmasters Directory" width="215" height="59" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2002</li>
<li><strong>Indexed Pages in Google:</strong> 1,670</li>
<li><strong>Backlinks in Yahoo:</strong> 30,433</li>
<li><strong>PageRank:</strong> 5</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free to submit to but a reciprocal is required.</li>
</ul>
<h2>6.<a href="http://www.ukwebmasterworld.net/" target="_blank"> UK Webmaster World Directory</a></h2>
<p><a href="http://www.ukwebmasterworld.net/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/ukwebmasterworld.jpg" alt="UK Webmaster World Directory" width="197" height="98" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2003</li>
<li><strong>Indexed Pages in Google:</strong> 302</li>
<li><strong>Backlinks in Yahoo:</strong> 3,457</li>
<li><strong>PageRank:</strong> 3</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Links are either paid or a reciprocal. Open to non-UK submissions.</li>
</ul>
<h2>7.<a href="http://www.webmasterindex.co.uk/" target="_blank"> UK Webmaster Directory </a></h2>
<p><a href="http://www.webmasterindex.co.uk/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/ukwebmaster.jpg" alt="UK Webmaster Directory" width="300" height="70" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2008</li>
<li><strong>Indexed Pages in Google:</strong> 73</li>
<li><strong>Backlinks in Yahoo:</strong> 469</li>
<li><strong>PageRank:</strong> 4</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free but reciprocal is required. For UK only.</li>
</ul>
<h2>8.<a href="http://webdesigners-directory.com/" target="_blank"> Web Design • Designers Directory</a></h2>
<p><a href="http://www.webdesigners-directory.com/"></a></p>
<p><a href="http://webdesigners-directory.com/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/webdesigners-directory.jpg" alt="webdesigners-directory.com" width="300" height="76" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2005</li>
<li><strong>Indexed Pages in Google:</strong> 2,229</li>
<li><strong>Backlinks in Yahoo:</strong> 163,889</li>
<li><strong>PageRank:</strong> 6</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> <a href="http://www.quantcast.com/webdesigners-directory.com">130,167</a></li>
<li><strong>Submission rules:</strong> Free and no reciprocal is required. US only.</li>
</ul>
<h2>9.<a href="http://www.webmasterslookup.com/"> Webmasters Lookup</a></h2>
<p><a href="http://www.webmasterslookup.com/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/webmasterlookup.jpg" alt="Webmasters Lookup" width="307" height="91" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2005</li>
<li><strong>Indexed Pages in Google:</strong> 237</li>
<li><strong>Backlinks in Yahoo:</strong> 4,236</li>
<li><strong>PageRank:</strong> 4</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free to submit to. This site is intended as a means for web designers to display their experience and portfolio to potential clients. Deep links are allowed.</li>
</ul>
<h2>10. <a href="http://web-design-directory-uk.co.uk/" target="_blank">The Web Design Directory UK</a></h2>
<p>The Web Design Directory UK is a new venture and is totally free.</p>
<p><a href="http://web-design-directory-uk.co.uk/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/web-design-directory-uk.co.uk.jpg" alt="Web-design-directory-uk.co.uk" width="238" height="102" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2002</li>
<li><strong>Indexed Pages in Google:</strong> 77</li>
<li><strong>Backlinks in Yahoo:</strong> 14.388</li>
<li><strong>PageRank:</strong> 5</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Free to submit to for UK web designers but a reciprocal is required. States on the submission form that it could take up to three months before they approve your entry.</li>
</ul>
<h2>11. <a href="http://www.designdir.net/" target="_blank">DesignDir.net</a></h2>
<p><a href="http://www.designdir.net/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/designdir-web-design-directory-seo.jpg" alt="designdir-web-design-directory-seo" width="309" height="58" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2003</li>
<li><strong>Indexed Pages in Google:</strong> 625</li>
<li><strong>Backlinks in Yahoo:</strong> 14,359</li>
<li><strong>PageRank:</strong> 4</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Paid or free if a reciprocal link. This directory covers not just web design but also related industries.</li>
</ul>
<h2>12. <a href="http://directory.designer.am/" target="_blank">DirectoryDesigner.am</a></h2>
<p><a href="http://directory.designer.am/" target="_blank"><img src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2009/08/web-design-directory/designdirectory.me.gif" alt="Directory.designer.am" width="280" height="89" /></a></p>
<ul>
<li><strong>Year Site Created:</strong> 2003</li>
<li><strong>Indexed Pages in Google:</strong> 480</li>
<li><strong>Backlinks in Yahoo:</strong> 12,224</li>
<li><strong>PageRank:</strong> 5</li>
<li><strong>Link Status:</strong> Dofollow</li>
<li><strong>Quantcast Ranking:</strong> No data</li>
<li><strong>Submission rules:</strong> Please read the submission guidelines before you submit. It is free but a reciprocal is advised.</li>
</ul>
<p>And last but not least is my own directory for web designers and webmasters here: <a href="http://www.suburban-glory.com/directory.html">http://www.suburban-glory.com/directory.html</a>. It is free to submit to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/design/12-web-design-directories-to-improve-your-seo/feed/</wfw:commentRss>
		<slash:comments>60</slash:comments>
		</item>
		<item>
		<title>How To Create Your Permalink Structure More User And SEO-friendly</title>
		<link>http://www.1stwebdesigner.com/wordpress/how-to-create-your-permalink-structure-more-user-and-seo-friendly/</link>
		<comments>http://www.1stwebdesigner.com/wordpress/how-to-create-your-permalink-structure-more-user-and-seo-friendly/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 20:44:59 +0000</pubDate>
		<dc:creator>Dainis Graveris</dc:creator>
				<category><![CDATA[HowTos]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[structure]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=2053</guid>
		<description><![CDATA[Okay, this time it will be just a small tip, I see many people do not know about. I must say this tip is for WordPress blog users, I don&#8217;t know what kind of system is in other blogs. So what am I talking about?? Every WordPress blog user should use and customize their permalink [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/wordpress/how-to-create-your-permalink-structure-more-user-and-seo-friendly" target="_self"><img style="border-right: 0px; border-top: 0px; margin: 0px 7px 0px 0px; border-left: 0px; border-bottom: 0px" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2008/11/title-permalink.jpg" border="0" alt="title-permalink" width="150" height="150" align="left" /></a> Okay, this time it will be just a small tip, I see many people do not know about. I must say this tip is for WordPress blog users, I don&#8217;t know what kind of system is in other blogs.</p>
<p>So what am I talking about??<br />
Every WordPress blog user should use and customize their permalink structure. What permalink means and stand for? Permalinks are the permanent URLs to Your individual blog posts, categories, archives and others. It is URL that follows after Your web site address for example I use (example.com as web site front page address) &#8211; example.com/follows-permalink-address. You see?</p>
<p><span id="more-2053"></span></p>
<p>This is default address to blog posts after installing WordPress blog &#8211; http://example.com/?p=123, WordPress calls this &#8220;Ugly&#8221; link and I cannot agree more :)</p>
<p>Whole reason I write this short article, because I see so many blogs using this default ugly link. Why people call this about ugly link?  Actually it&#8217;s because this link is very unfriendly to the search engines &#8211; one of the most important criteria to the search engine spider is file name &#8211; do not to waste this SEO friendly factor. You see permalink address like ?p=123 do not say anything about Your post. Okay, now maybe You agree, You should use SEO friendly permalink so I will go ahead and answer to the next question &#8211; How to implement it?</p>
<p>Ugly permalink &#8211; http://example.com/?p=123</p>
<p>Pretty permalink &#8211; http://example.com/category/post-name/<span style="color: #000000;"> </span>or  http://example.com/year/month/day/post-name</p>
<p>You can change permalink settings in Your admin panel  Settings&#8211;&gt;Permalinks. If Your settings are default I suggest and recommend to change  it to  &#8211; /%category%/%postname%/</p>
<p>Do this in every blog when You are starting out. Now Your address to post will be http://www.example/com/category/post-title &#8211; much better indeed?</p>
<pre><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://cdn1.1stwebdesigner.com/wp-content/uploads/2008/11/permalink1.jpg" border="0" alt="permalink" width="551" height="513" /></pre>
<h3>Huh, but what You can do if You&#8217;re using default settings and have many posts already?</h3>
<p>You have all these links in search engines, trackbacks, pingbacks and social bookmarking sites &#8211; permalink change would seriously crash and broke all links out there. If You are in this situation there is actually one thing to do, I&#8217;ll explain things later.</p>
<p>Take these steps then in following order:</p>
<p>1. Download and install <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/" target="_blank">Permalink Migration plugin</a></p>
<p>2. Unzip it, drop it in wp-content/plugins folder and activate it;</p>
<p>3. Now go to admin panel-&gt;options-&gt;PermalinksMigration</p>
<p>4. And then set the old, default permalink structure of your site in the form.</p>
<p>5. Now go to Your admin panel  Settings&#8211;&gt;Permalinks. Now change  it to  &#8211; /%category%/%postname%/</p>
<p>Permalink Migration plugin &#8211; &#8220;With this plugin, you can safely change your permalink structure without breaking the old links to your web site,and even doesn’t affect your search engine rankings.&#8221; It&#8217;s called 301 Redirect, also known as a permanent redirect. For alternative You can also check out this <a href="http://urbangiraffe.com/plugins/redirection/" target="_blank">Redirection plugin</a> with more options.</p>
<p>Now  instead of hitting 404 error page, user will be automatically redirected to Your new structure URL in moments and search engine spiders also will find new links faster and change it! Nice one! Also You can use redirection plugin if You are migrating pages from other web site, or are changing the directory of your WordPress installation. I hope this will help &#8211; now You have much more SEO-friendly permalink structure!</p>
<p>If You have any tips, questions, feel free to ask, also consider to visit <a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">WordPress Codex &#8211; Using Permalinks</a>, You&#8217;ll find more options how to change Your permalinks using different tags like -  %year%, %monthnum%, %day%, %hour%, %minute%, %second% and much more detailed explanation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/wordpress/how-to-create-your-permalink-structure-more-user-and-seo-friendly/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
	</channel>
</rss>

