<?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>Hello Robot &#187; Wordpress</title>
	<atom:link href="http://www.hellorobot.se/blog/tags/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hellorobot.se/blog</link>
	<description>Tobias Gärder, en frilansande webbformgivare, om design, webbutveckling, inspiration och mjukvara.</description>
	<lastBuildDate>Wed, 12 May 2010 21:37:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Lägg till Facebook Like-knapp i Wordpress</title>
		<link>http://www.hellorobot.se/blog/facebook-like-knapp-wordpress-tema/1167/</link>
		<comments>http://www.hellorobot.se/blog/facebook-like-knapp-wordpress-tema/1167/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 13:11:27 +0000</pubDate>
		<dc:creator>Tobbe</dc:creator>
				<category><![CDATA[Webbutveckling]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.hellorobot.se/blog/?p=1167</guid>
		<description><![CDATA[Jag har precis langat upp Facebook Like-knappar på varje bloggpost och gjort det på enklast möjliga vis. Följ med:

Använd Facebooks knappgenerator för att få koden som du vill ha den (om den ska visa nunor på de som gillat eller bara siffror, storlek på knappen osv).  Generatorn erbjuder både iframe- och xfbmlvarianter – jag [...]]]></description>
			<content:encoded><![CDATA[<p>Jag har precis langat upp <b>Facebook Like</b>-knappar på varje bloggpost och gjort det på enklast möjliga vis. Följ med:</p>
<ol>
<li>Använd <a href="http://developers.facebook.com/docs/reference/plugins/like">Facebooks knappgenerator</a> för att få koden som du vill ha den (om den ska visa nunor på de som gillat eller bara siffror, storlek på knappen osv).  Generatorn erbjuder både iframe- och xfbmlvarianter – jag kör iframe, oldschool som jag är. </li>
<li>Kopiera koden du får ut, t.ex:
<p><code>&lt;iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fhellorobot.se%2Fblog%2F&amp;layout=button_count&amp;show_faces=false&amp;amp;width=120&amp;amp;action=like&amp;amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:120px; height:20px"&gt;&lt;/iframe&gt;</code></p>
</li>
<li>För att få ut rätt url från Wordpress (urlencodad och klar) byter du ut den statiska adressen mot följande (i loopen för t.ex single.php eller index.php):
<p><code>&lt;iframe src="http://www.facebook.com/plugins/like.php?href=<b>&lt;?php echo urlencode(get_permalink($post->ID)); ?&gt;</b>&amp;amp;layout=button_count&amp;amp;show_faces=false&amp;amp;width=120&amp;amp;action=like&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:120px; height:20px"&gt;&lt;/iframe&gt;</code></p>
</li>
</ol>
<hr/>Originally posted at <strong><a href="http://www.hellorobot.se/blog">Hello Robot</a></strong>]]></content:encoded>
			<wfw:commentRss>http://www.hellorobot.se/blog/facebook-like-knapp-wordpress-tema/1167/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling Canonical URL&#8217;s With Wordpress</title>
		<link>http://www.hellorobot.se/blog/handling-canonical-urls-with-wordpress/65/</link>
		<comments>http://www.hellorobot.se/blog/handling-canonical-urls-with-wordpress/65/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 08:19:35 +0000</pubDate>
		<dc:creator>Tobbe</dc:creator>
				<category><![CDATA[Webbutveckling]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.hellorobot.se/blog/?p=65</guid>
		<description><![CDATA[Up until now a constant SEO issue has been dealing with duplicate content, pages that can be reached through different url&#8217;s and therefore regarded as dupes, like the following:
http://www.mydomain.com/mypage.html

http://www.mydomain.com/mypage.html?category=misc


http://www.mydomain.com/mypage.html?sessionid=1234

These three url&#8217;s all point to the same page but would be looked at as three different pages with identical content by the search engines. To help [...]]]></description>
			<content:encoded><![CDATA[<p>Up until now a constant SEO issue has been dealing with duplicate content, pages that can be reached through different url&#8217;s and therefore regarded as dupes, like the following:</p>
<pre>http://www.mydomain.com/mypage.html

http://www.mydomain.com/mypage.html?category=misc


http://www.mydomain.com/mypage.html?sessionid=1234</pre>

<p>These three url&#8217;s all point to the same page but would be looked at as three different pages with identical content by the search engines. To help us deal with this Google, Yahoo! and Microsoft now supports the <strong>link rel=&#8221;canonical&#8221;</strong> tag.</p>
<p>Just put it in your &lt;head&gt;-section along with the url you prefer to inform them which address they should use instead of eventual dupes.</p>
<pre>&lt;link rel="canonical" href="http://www.mydomain.com/mypage.html" /&gt;</pre>
<p>The search engines considers this a strong hint, not a directive. This means that they&#8217;ll most probably use the information you provide but they reserve the right to ignore it if it looks like it&#8217;s misused. You can refer to an url that redirects but they don&#8217;t allow you to redirect to another domain, and you can define relative paths.</p>
<p><a href="http://yoast.com/canonical-url-links/">Joost de Walk</a> has put together a simple install-and-forget Wordpress plugin to handle this automatically, available for download <a href="http://yoast.com/wordpress/canonical/">here</a>. Just put it in your /wp-content/plugins/-path, activate it and you&#8217;re set.</p>
<p>Read more about it at <a href="http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html">Google Webmaster Central</a> and <a href="http://www.robertnyman.com/2009/02/17/handle-duplicate-content-indexing-for-seo-with-the-relcanonical-attribute/">Robert&#8217;s Talk</a>. </p>
<hr/>Originally posted at <strong><a href="http://www.hellorobot.se/blog">Hello Robot</a></strong>]]></content:encoded>
			<wfw:commentRss>http://www.hellorobot.se/blog/handling-canonical-urls-with-wordpress/65/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
