<?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>Jonathans</title>
	<atom:link href="http://jonathanbjorkskog.com/feed" rel="self" type="application/rss+xml" />
	<link>http://jonathanbjorkskog.com</link>
	<description>Online awesomeness!</description>
	<lastBuildDate>Mon, 26 Mar 2012 12:41:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Add pinterest pin-it button to WordPress site</title>
		<link>http://jonathanbjorkskog.com/add-pinterest-pin-it-button-to-wordpress-site</link>
		<comments>http://jonathanbjorkskog.com/add-pinterest-pin-it-button-to-wordpress-site#comments</comments>
		<pubDate>Tue, 28 Feb 2012 18:28:18 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=1002</guid>
		<description><![CDATA[<p>TweetOkay, the new big thing in social media seems to be here, and it is called Pinterest. Let&#8217;s start as usual by gaining some traffic and referrals from that new site by adding a pinterest pin-it button to our WordPress website or blog, so that people can start pinning our pictures and therefor send us [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/add-pinterest-pin-it-button-to-wordpress-site">Add pinterest pin-it button to WordPress site</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton1002" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fadd-pinterest-pin-it-button-to-wordpress-site&amp;via=jonathanbj&amp;text=Add%20pinterest%20pin-it%20button%20to%20WordPress%20site&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fadd-pinterest-pin-it-button-to-wordpress-site" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>Okay, the new big thing in social media seems to be here, and it is called Pinterest. Let&#8217;s start as usual by gaining some traffic and referrals from that new site by <strong>adding a pinterest pin-it button to our WordPress website or blog</strong>, so that people can start pinning our pictures and therefor send us visitors as well. It goes like this<span id="more-1002"></span></p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2012/02/add-pinterest-pin-it-button-to-wordpress-blog-or-website.jpg"><img class="aligncenter size-full wp-image-1005" title="add pinterest pin it button to wordpress blog or website" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/02/add-pinterest-pin-it-button-to-wordpress-blog-or-website.jpg" alt="add pinterest pin it button to wordpress blog or website" width="407" height="488" /></a></p>
<h2>A code is needed to add pinterest pin-it button to WordPress site</h2>
<p>As with <a title="Add plus one button to WordPress site" href="http://jonathanbjorkskog.com/add-plus-one-button-to-wordpress-site">adding the Google Plus button</a>, there is no good plugin for this. Or, there is basically two plugins you can use, the <a href="http://wordpress.org/extend/plugins/pinterest-pin-it-button/" target="_blank">Pinterest &#8220;pin it&#8221; plugin</a>, and the other plugin that was so bad that I don´t even want to link to it. So we will be editing some template files for being able to add the pinterest button manually instead until someone makes a great plugin.</p>
<ol>
<li>Start looking for the place where you want to add the button in single.php. You are searching for something that looks like this: <span style="color: #ff0000;">&lt;?php the_content(); ?&gt;</span>. We want to put the button right above that for making it appear above the content, in the same place where I have the Like, Tweet, and G+ Buttons.</li>
<li>Paste the code found on the <a href="http://pinterest.com/about/goodies/" target="_blank">Pinterest page for adding pin-buttons</a>. It is in the middle of the page, and named &#8220;Pin it button for website&#8221;. But do not paste it as it is, we need to modify it slightly before inserting it. Modify it like this:<br />
<span style="color: #0000ff;">&lt;div class=&#8221;pinterest&#8221; style=&#8221;float:right; width:50px; margin-left:10px;&#8221;&gt;</span><br />
<span style="color: #008000;">&lt;a href=</span><span style="color: #0000ff;">&#8220;http://pinterest.com/pin/create/button/?url=</span><span style="color: #ff0000;">&lt;?php the_permalink(); ?&gt;</span><span style="color: #0000ff;">&amp;media=</span><span style="color: #ff0000;">&lt;?php</span> $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post-&gt;ID), &#8216;thumbnail&#8217; ); echo $thumb['0']; <span style="color: #ff0000;">?&gt;</span><span style="color: #0000ff;">&amp;description=</span><span style="color: #ff0000;">&lt;?php the_title(); ?&gt;</span>&#8221; <span style="color: #008000;">class=&#8221;pin-it-button&#8221; count-layout=&#8221;horizontal&#8221;&gt;</span>Pin It<span style="color: #008000;">&lt;/a&gt;</span><span style="color: #ff0000;">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://assets.pinterest.com/js/pinit.js&#8221;&gt;&lt;/script&gt;</span><br />
<span style="color: #0000ff;">&lt;/div&gt;</span></li>
<li>You can still add more div&#8217;s around it and style it if you want to. But like that it will work. Place the same code in page.php, index.php and category.php as well if you want it to show on more pages.</li>
</ol>
<p>Warning! You need to have &#8220;featured&#8221; image function active on your WordPress site, and you will need to have a featured image chosen for every post where this is gonna work. Because the Pin It button needs a picture in the post, and with this code it automatically choses the featured image.</p>
<h3>Alternative codes for Pinterest Pin It button</h3>
<p>You can also chose a code that makes the pin it button grab the first picture from the blog post or article, if you have no featured images in your blog posts. This is then what you need to do:</p>
<ol>
<li>Put this code in the file named functions.php:<br />
<span style="color: #993300;"><code>function</code> <code>pin_img() {</code></span></p>
<div><span style="color: #993300;"><code>  </code><code>global</code> <code>$post</code><code>, </code><code>$posts</code><code>;</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>$first_img</code> <code>= </code><code>''</code><code>;</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>ob_start();</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>ob_end_clean();</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>$output</code> <code>= preg_match_all(</code><code>'/&lt;img.+src=[\'"]([^\'"]+)[\'"].*&gt;/i'</code><code>, </code><code>$post</code><code>-&gt;post_content, </code><code>$matches</code><code>);</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>$first_img</code> <code>= </code><code>$matches</code> <code>[1] [0];</code></span></div>
<div></div>
<div><span style="color: #993300;"><code>  </code><code>if</code><code>(</code><code>empty</code><code>(</code><code>$first_img</code><code>)){ </code><code>//Defines a default image</code></span></div>
<div><span style="color: #993300;"><code>    </code><code>$first_img</code> <code>= </code><code>"/images/default.jpg"</code><code>;</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>}</code></span></div>
<div><span style="color: #993300;"><code>  </code><code>return</code> <code>$first_img</code><code>;</code></span></div>
<div><span style="color: #993300;"><code>}</code></span></div>
</li>
<li>Put this in single.php<br />
<span style="color: #0000ff;">&lt;a href=&#8221;http://pinterest.com/pin/create/button/?url=&lt;?php the_permalink() ?&gt;&amp;media=&lt;?php echo pin_img() ?&gt;&amp;description=&lt;?php the_title(); ?&gt;&#8221; count-layout=&#8221;horizontal&#8221;&gt;Pin It&lt;/a&gt; &lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://assets.pinterest.com/js/pinit.js&#8221;&gt;&lt;/script&gt;</span></li>
</ol>
<h3>Optimization of the code where the Pinterest Pin It button is</h3>
<p>You can move the &lt;script&#8230; to the footer for a faster site. And you can also move all the style&#8217;s to the style.css file for a nicer code. But anyway, it works like this also!</p>
<p>Thanks for reading about how to add the pinterest pin-it button to WordPress site, if you have improvements or questions, feel free to comment! And do not forget to test-pin this post for checking if it works!</p>
<p>&nbsp;</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/add-pinterest-pin-it-button-to-wordpress-site">Add pinterest pin-it button to WordPress site</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/add-pinterest-pin-it-button-to-wordpress-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make &#8220;This is what my friends thinks I do&#8221; -pictures</title>
		<link>http://jonathanbjorkskog.com/how-to-make-this-is-what-my-friends-thinks-i-do-pictures</link>
		<comments>http://jonathanbjorkskog.com/how-to-make-this-is-what-my-friends-thinks-i-do-pictures#comments</comments>
		<pubDate>Thu, 16 Feb 2012 21:41:26 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Facebook tricks]]></category>
		<category><![CDATA[Fun Stuff]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=989</guid>
		<description><![CDATA[<p>TweetYou have probably all seen them all over Facebook lately. The &#8220;This is what my friends think I do&#8220;-pictures with 6 funny pictures in. And you maybe want to make an own? Well, it is not hard at all, you can actually download the photoshop template here and just add you own pictures to it. [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/how-to-make-this-is-what-my-friends-thinks-i-do-pictures">How to make &#8220;This is what my friends thinks I do&#8221; -pictures</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton989" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fhow-to-make-this-is-what-my-friends-thinks-i-do-pictures&amp;via=jonathanbj&amp;text=How%20to%20make%20%26%238220%3BThis%20is%20what%20my%20friends%20thinks%20I%20do%26%238221%3B%20-pictures&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fhow-to-make-this-is-what-my-friends-thinks-i-do-pictures" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>You have probably all seen them all over Facebook lately. The &#8220;<strong>This is what my friends think I do</strong>&#8220;-pictures with 6 funny pictures in. And you maybe want to make an own? Well, it is not hard at all, you can actually download the photoshop template here and just add you own pictures to it.<span id="more-989"></span></p>
<h2>This is what my friends thinks I do -image example:</h2>
<p>This is one such picture I made that got quite a lot of attention on Facebook:</p>
<div id="attachment_990" class="wp-caption alignnone" style="width: 630px"><a href="http://jonathanbjorkskog.com/wp-content/uploads/2012/02/kitesurfer-what-i-think-i-do.jpg"><img class="size-large wp-image-990" title="kitesurfer what i think i do -picture" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/02/kitesurfer-what-i-think-i-do-620x439.jpg" alt="kitesurfer what i think i do -picture" width="620" height="439" /></a><p class="wp-caption-text">kitesurfer what i think i do -picture</p></div>
<h2>How to make &#8220;This is what I think I do&#8221; -image, step by step</h2>
<ol>
<li>Download <a title="The what I think I do picture template" href="http://jonathanbjorkskog.com/downloadable/what-i-think-i-do-template.psd" target="_blank">the template with the 6 images on</a>, (or make an own black background picture).</li>
<li>Chose which six texts you want to use. The most common ones are the following:<br />
What my friends thinks I do.<br />
What my mom thinks I do.<br />
What society thinks I do.<br />
What my dad thinks I do.<br />
What my colleges thinks I do.<br />
What my boss think I do.<br />
And of course &#8220;<em>What I think I do</em>&#8221; and &#8220;<em>What I really do</em>&#8220;.</li>
<li>Write the six texts in the places they should be, below the pictures. There are already layers made for this, just edit the texts.</li>
<li>Edit the &#8220;heading&#8221; text. There is a layer for that as well.</li>
<li>Copy pictures from the web or from your camera and paste them at the bottom of the layer-list, right above the layer named &#8220;paste all your pictures here&#8221;.</li>
<li>Rezise them and save the whole masterpiece as a jpg or png, upload it to Facebook and see the likes dropping in!</li>
</ol>
<h3>The &#8221;This is what my friends thinks I do&#8221; Photoshop template:</h3>
<div id="attachment_991" class="wp-caption alignnone" style="width: 630px"><a href="http://jonathanbjorkskog.com/downloadable/what-i-think-i-do-template.psd"><img class="size-large wp-image-991 " title="what I think I do -photoshop template" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/02/what-i-think-i-do-template-620x439.jpg" alt="what I think I do -photoshop template" width="620" height="439" /></a><p class="wp-caption-text">Click on the picture to download the what I think I do -photoshop template</p></div>
<p>So, now you have yor own great &#8220;<em>What my friends thinks I do</em>&#8220;-picture. Do you want to show it of to more people? Then just post it in the comment-field and I will make a showcase of the best &#8220;What my friends thinks I do&#8221;-pictures here on the blog. Go ahed, make something nice!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/how-to-make-this-is-what-my-friends-thinks-i-do-pictures">How to make &#8220;This is what my friends thinks I do&#8221; -pictures</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/how-to-make-this-is-what-my-friends-thinks-i-do-pictures/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Successful Facebook campaign, case study MUSCH</title>
		<link>http://jonathanbjorkskog.com/successful-facebook-campaign-case-study</link>
		<comments>http://jonathanbjorkskog.com/successful-facebook-campaign-case-study#comments</comments>
		<pubDate>Wed, 04 Jan 2012 08:27:44 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Facebook tricks]]></category>
		<category><![CDATA[Social media]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=962</guid>
		<description><![CDATA[<p>TweetIt starts to be a long time ago since I last shared a case study, I think it is time for one again! This is a case study of a successful Facebook campaign we ran before Christmas for one of our (Genero Digital Agency) customers, MUSCH, a dog and cat food making company in Finland. [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/successful-facebook-campaign-case-study">Successful Facebook campaign, case study MUSCH</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton962" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fsuccessful-facebook-campaign-case-study&amp;via=jonathanbj&amp;text=Successful%20Facebook%20campaign%2C%20case%20study%20MUSCH&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fsuccessful-facebook-campaign-case-study" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>It starts to be a long time ago since I last shared a case study, I think it is time for one again! This is a <strong>case study of a successful Facebook campaign</strong> we ran before Christmas for one of our (<a href="http://www.genero.fi/" target="_blank">Genero Digital Agency</a>) customers, <a href="http://www.musch.fi/" target="_blank">MUSCH</a>, a dog and cat food making company in Finland.</p>
<p>Help us gain more attention for this, <a href="http://facebook-studio.com/gallery/submission/joyful-christmas-for-homeless-dogs-cats#/gallery/submission/joyful-christmas-for-homeless-dogs-cats" target="_blank">Check and like the case on Facebook Studios here</a>.<span id="more-962"></span></p>
<h2>The Facebook campaign idea</h2>
<p><a href="http://facebook-studio.com/gallery/submission/joyful-christmas-for-homeless-dogs-cats#/gallery/submission/joyful-christmas-for-homeless-dogs-cats"><img class="alignnone size-full wp-image-963" title="Successful Facebook campaigns - case study MUSCH" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/successful-facebook-campaigns-case-study-MUSCH.png" alt="Successful Facebook campaigns - case study MUSCH" width="619" height="348" /></a></p>
<p>The idea of the Facebook campaign was to give away dog and cat food to homeless dogs, for free, in time for Christmas. And in the same time draw attention to the company and increase the base of enthusiastic &#8220;likers&#8221;. The company was giving away 100 grams of dog food for every &#8220;fan&#8221;, for every Tweet with the hashtag #Muschjouluiloa, and for every blog using any of the campaign banners on their site. This is how we did it:</p>
<ol>
<li>A <a href="http://www.facebook.com/muschfi?sk=app_125127224266597" target="_blank">Facebook page</a> was made, where you could vote for which charity should get the most of the money. You could pick one of three, the one with the most votes would get 50% of the free food, the one with the second most would get 30% of the food, and the one with the least votes would get the last 20% of the food. Everyone got something, anyway, I think that is a smart idea to get rid of a lot of negative feedback. A touching story was made for all three  charities as well.</li>
<li>For being able to vote, you had to like the <a href="http://www.facebook.com/muschfi" target="_blank">MUSCH Facebook page</a> first. When you voted, you simple clicked a like-button under the logo for the charity, so you actually liked the story of the charity, and it was posted to your wall.</li>
<li>A bowl of dog-food was placed on the Facebook page, the amount of food in it increased with every new like. Just a fun thing!</li>
<li>Ads were made on Facebook pointing to the Facebook-page, different ads for cat and dog owners.</li>
</ol>
<p>That was about it. People went crazy sharing and recommending the company, because they all wanted to help MUSCH give away as much food as possible to the homeless dogs and cats. People were sharing all the statuses that were made during the campaign time  a lot as well.</p>
<h2>The results of the Facebook campaign (or case)</h2>
<p>I think that the results of the successful Facebook campaign is best presented in this case-video:</p>
<p><iframe src="http://www.youtube.com/embed/syEFyq3JfuA?rel=0" frameborder="0" width="540" height="304"></iframe></p>
<p>In the first day the amount of fans on MUSCH doubled, from about 6000 to 12000. The next day it went up with another 8000. Totally during the two weeks the campaign was running, the amount of fans grew from 6,425 to 38,586, which is an increase with over 600%. The fan page was the most growing Facebook page in Finland during this time, according to &#8220;Fanilista&#8221; where the most pages are listed.</p>
<blockquote><p>In the end, the three different charities got 3,981.4kg of free dog and cat food. Vaasan kissatalo (The House of Cats in the City of Vaasa) received 1,535 votes and 50% of the donated pet food. Pelastetaan koirat (Save the Dogs) got 1,236 likes and 30% of the donated pet food. Kodittomat koirat (Homeless Dogs) got 686 likes and 20% of the pet food.</p></blockquote>
<p>At its peak, 29,483 people were talking about MUSCH and the campaign, and 1,140 recommendations were made. The <a href="http://www.musch.fi/blogi/jaa-jouluiloa-kodittomille-koirille-ja-kissoille-nettisivuillasi-tai-blogissasi" target="_blank">blog post on the MUSCH web site</a> where the campaign was described was shared 945 times, and the banners linking to musch were placed on 29 blogs, along with other content about MUSCH in a very positive manner. And mostly in blog posts, which means the links will be permanent, all of you knowing what <a href="http://jonathanbjorkskog.com/category/seo-search-engine-optimization">SEO</a> is about knows what that does for the rankings in Google as well.</p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/successful-facebook-campaign-case-study-musch-everyhing-liked.jpg"><img class="alignnone size-full wp-image-964" title="everyhing got liked, I think it is a successful facebook campaign" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/successful-facebook-campaign-case-study-musch-everyhing-liked.jpg" alt="everyhing got liked, I think it is a successful facebook campaign" width="619" height="348" /></a></p>
<h3>The case were submitted to Facebook studios</h3>
<p>Thanks for reading my <em>successful Facebook campaign case study</em>, be sure to go and <a href="http://facebook-studio.com/gallery/submission/joyful-christmas-for-homeless-dogs-cats#/gallery/submission/joyful-christmas-for-homeless-dogs-cats" target="_blank">like the case on Facebook Studios</a> as well, that would be really appreciated! <a href="http://jonathanbjorkskog.net/en-lyckad-facebook-kampanj-case-musch-julgladje/">Read this post in Swedish here</a>!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/successful-facebook-campaign-case-study">Successful Facebook campaign, case study MUSCH</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/successful-facebook-campaign-case-study/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Make a WordPress timeline for comments (Facebook look-a-like)</title>
		<link>http://jonathanbjorkskog.com/make-a-wordpress-timeline-for-comments-facebook-look-a-like</link>
		<comments>http://jonathanbjorkskog.com/make-a-wordpress-timeline-for-comments-facebook-look-a-like#comments</comments>
		<pubDate>Mon, 02 Jan 2012 18:14:15 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Facebook tricks]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=953</guid>
		<description><![CDATA[<p>TweetAfter Facebook launched the timeline, I have thought about some different ways of making something in WordPress that looks like the Facebook Timeline. I made a page that shows all my comments in 2011 as a timeline (Check it!). I made it after seeing on Twitter that forsandree had made a guide for making a WordPress timeline for [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/make-a-wordpress-timeline-for-comments-facebook-look-a-like">Make a WordPress timeline for comments (Facebook look-a-like)</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton953" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fmake-a-wordpress-timeline-for-comments-facebook-look-a-like&amp;via=jonathanbj&amp;text=Make%20a%20WordPress%20timeline%20for%20comments%20%28Facebook%20look-a-like%29&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fmake-a-wordpress-timeline-for-comments-facebook-look-a-like" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>After Facebook launched the timeline, I have thought about some different ways of making something in WordPress that looks like the Facebook Timeline. I made a <a title="All 2011 comments as timeline" href="http://jonathanbjorkskog.com/all-2011-comments-as-timeline">page that shows all my comments in 2011 as a timeline (Check it!)</a>. I made it after seeing on Twitter that <a title="Erik Fors-Andrée" href="https://twitter.com/#!/forsandree" data-user-id="5558672">forsandree</a> had made a <a href="http://definitionofdone.blogspot.com/2011/12/skapa-en-tidslinje-med-arets.html" target="_blank">guide for making a WordPress timeline for comments</a> (<a href="http://www.vd-blogg.se/tidslinje-kommentarer" target="_blank">Here is his timeline as well</a>). Unfortunately for you, the guide is in Swedish. But I will try to explain it for you here!<span id="more-953"></span></p>
<h2>What is the WordPress timeline for comments?</h2>
<p>It is basically a page on my WordPress blog that shows every comment in a specific time-interval as a Facebook timeline. <a title="All 2011 comments as timeline" href="http://jonathanbjorkskog.com/all-2011-comments-as-timeline">Check it here</a>! It does not list the WordPress posts or anything, just the comments and a link to the post where the comment is presented, and the avatar of the comment author, a link to the comment authors site, and it is all presented chronologically, with the newest comments first. It also works if you have Disqus comments activated.</p>
<p><a href="http://jonathanbjorkskog.com/all-2011-comments-as-timeline"><img class="alignnone size-large wp-image-954" title="wordpress comments as timeline" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/wordpress-comments-as-timeline-620x469.png" alt="wordpress comments as timeline" width="620" height="469" /></a></p>
<h3>How to make a WordPress timeline for comments, the Facebook style:</h3>
<p>Start with making a new file in your template-folder. Name it for example page-timeline.php. In that one, insert the code you have copied from <a href="http://www.vd-blogg.se/wp-content/uploads/2011/12/tidslinje.txt" target="_blank">Definition of Done (From this file)</a>.</p>
<p>Then, open a CSS-file you have, often named style.css, and paste all the css in the bottom of the file. The CSS that you find on <a href="http://definitionofdone.blogspot.com/2011/12/skapa-en-tidslinje-med-arets.html" target="_blank">Definition of Done (in the middle of the page)</a>.</p>
<p>Then upload the files to your template folder.</p>
<p>Then create a new page, leave it empty and in the lower right corner, under Page attributes, where it says &#8220;Template&#8221;, chose the one named &#8220;Tack-template&#8221;. Then publish the page. It will then be ready and look like the timeline. At least if you use the template &#8220;Twenty Eleven&#8221;. In other templates you might have to delete one of the closing div&#8217;s in the end of the file. There will be some Swedish words in there as well. You can edit the file for renaming all the Swedish terms. Or then, download my timeline files that are described a little lower on this page.</p>
<h3>Customize and SEO-optimize the WordPress timeline for comments</h3>
<p>I think <a title="Erik Fors-Andrée" href="https://twitter.com/#!/forsandree" data-user-id="5558672">forsandree</a> had made a great piece of code, but every great piece of code can be developed even more. I found dome things I wanted to change for getting it to look nicer and to be a little bit more <a href="http://jonathanbjorkskog.com/category/seo-search-engine-optimization">SEO</a>-optimized.</p>
<ol>
<li>Change all the Swedish words to English.</li>
<li>Make the links to the posts with the &#8220;post title&#8221; as the anchor text instead of the date.</li>
<li>Add <a title="NoFollow duck: Bad duck, NoFollow link: bad link?" href="http://jonathanbjorkskog.com/nofollow-duck-bad-duck-nofollow-link-bad-link">nofollow</a> to all outgoing links (names of commenters). This is not necessary, but I get quite a lot of sp@m (Domain registration India), and I have not moderated away all of the comments, but neither I want to reward them, so I just nofolled every link to comment authors.</li>
<li>Add a Facebook Cover look-a-like picture to the top of the page (do this by making a image that look like the cover, and upload it when editing the page).</li>
</ol>
<p>Here are the new files, where all the changes are made: <a title="change the txt to php" href="http://jonathanbjorkskog.com/downloadable/page-timeline2.txt" target="_blank">Page-timeline2.php</a> and &#8220;<a href="http://jonathanbjorkskog.com/downloadable/paste-into-style.css" target="_blank">paste-into-style.css</a>&#8220;. If you want to use them, you just need to change the file ending &#8220;.txt&#8221; to &#8220;.php&#8221;, and then upload them to your theme-folder, and chose the &#8220;template&#8221; Timeline-template from the right sidebar when making the page! <a title="All 2011 comments as timeline" href="http://jonathanbjorkskog.com/all-2011-comments-as-timeline">Here is my comment-timeline once again</a>.<br />
Thanks for reading the post about <em>how to make a WordPress timeline for comments like the Facebook timeline</em>. I will probably soon post about how to make a template that shows your posts as a timeline also! Feel free to ask questions below!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/make-a-wordpress-timeline-for-comments-facebook-look-a-like">Make a WordPress timeline for comments (Facebook look-a-like)</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/make-a-wordpress-timeline-for-comments-facebook-look-a-like/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My 20 new year promises for 2012</title>
		<link>http://jonathanbjorkskog.com/my-20-new-year-promises-for-2012</link>
		<comments>http://jonathanbjorkskog.com/my-20-new-year-promises-for-2012#comments</comments>
		<pubDate>Sun, 01 Jan 2012 11:43:20 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=927</guid>
		<description><![CDATA[<p>TweetYeah, it is that time of year again, time to make new year promises for the new year, 2012. Promises that you probably never will be able to keep..:) But anyway, it is always good to set goals! Here are my new year promises for 2012: Jonathans new year promises for 2012 1. Be free [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/my-20-new-year-promises-for-2012">My 20 new year promises for 2012</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton927" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fmy-20-new-year-promises-for-2012&amp;via=jonathanbj&amp;text=My%2020%20new%20year%20promises%20for%202012&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fmy-20-new-year-promises-for-2012" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>Yeah, it is that time of year again, time to make new year promises for the new year, 2012. Promises that you probably never will be able to keep..:) But anyway, it is always good to set goals! Here are my new year promises for 2012:</p>
<p><span id="more-927"></span></p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/new-year-promises-2012.jpg"><img class="alignnone size-large wp-image-938" title="new year promises 2012, picture from new years party yesteraday" src="http://jonathanbjorkskog.com/wp-content/uploads/2012/01/new-year-promises-2012-620x413.jpg" alt="new year promises 2012, picture from new years party yesteraday" width="620" height="413" /></a></p>
<h2>Jonathans new year promises for 2012</h2>
<h3>1. Be free from work more</h3>
<p>I will try to get even more focused and therefor get more things done at work, so that I can relax when not working, and not need to work in the evenings.</p>
<h3>2. Work more</h3>
<p>Same as in new year promise 1, I will try to learn to work smarter, and do the right things at the right time. Work more does not need to be equal to &#8220;work longer days&#8221;.</p>
<h3>3. Kitesurf more</h3>
<p>This is a promise. Kitesurfing makes me relax. I will keep you updated on this topic at my <a href="http://www.kitesurfersblog.com/blog" target="_blank">kitesurfing blog</a>.</p>
<h3>4. Work out more in the gym</h3>
<p>I will probably need it. It would be nice to get in shape again after two years of crazy working, when starting up <a href="http://www.genero.fi/" target="_blank">Genero Digital Agency</a> with <a href="http://www.sebastianostman.com/" target="_blank">Sebastian</a> and <a href="http://rasmusostman.fi/" target="_blank">Rasmus</a>. For the work-out purpose I ordered the domain <a href="http://www.traningsblogg.com/" target="_blank">Träningsblogg.com</a> (&#8220;fitness-blog in Swedish&#8221;). My <a href="http://www.linabjorkskog.com/lina/traning" target="_blank">vife</a> will act as my personal trainer weither I want it or not..:)</p>
<h3>5. Lose more weight</h3>
<p>I will show them it is possible, even if just sitting down at work, eating a lot of trash-food, Pepsi and energy drinks.</p>
<h3>6. Sleep more</h3>
<p>I will not stay up working in the nights as much as before. This is the new-year promise that probably will fail, because I like working in the nights when nothing can disturb. But I will keep it here as a goal.</p>
<h3>7. Have more spare time</h3>
<p>At least I will try to.</p>
<h3>8. Run more half marathons</h3>
<p>This one is easy. I just need to run one for succeeding here, cause I have not been running any before. And <a href="http://www.linabjorkskog.com/traning/helsinki-city-run-5-5-2011" target="_blank">I will run the Helsinki City run in May </a>with my colleagues and my vife. Now that is said, I cant take it back anymore.</p>
<h3>9. Get more things done</h3>
<p>Both at work and off work. At least I will get a new car and a new apartment in 2012. And I wil probably keep <a href="http://jonathanbjorkskog.com/seo-trick-6-buy-keyword-domains-and-build-campaign-sites">registering domains and build WordPress sites</a> like crazy this year as well.</p>
<h3>10. Write more blog posts</h3>
<p>I will write more here, I will write more on the <a href="http://www.genero.fi/blog" target="_blank">Genero-blog</a>, I will be guest-blogging at &#8220;<a href="http://www.forummag.fi/" target="_blank">Forum för ekonomi och teknik</a>&#8221; (A swedish magazine about economy and technology), I will be writing in the <a href="http://www.kitesurfersblog.com/blog" target="_blank">kitesurfing-blog</a>, I will be writing in my blog about <a href="http://professionalwpthemes.com/" target="_blank">making WordPress templates</a>, and probably on a lot more places, mostly in Swedish and English.</p>
<h3>11. Own the result-pages in Google even more</h3>
<p>I got it quite dialed in right now, what Google likes. I will do more of that. I will be focusing on some sites in Finnish, Swedish and English, in niches like pet food (<a href="http://www.musch.fi/" target="_blank">Koiranruoka</a>, <a href="http://www.musch.fi/barffaus" target="_blank">barffaus</a>, <a href="http://www.kissanruoka.net/" target="_blank">kissanruoka</a>), green energy (<a href="http://www.geodrill.fi/maalampo/" target="_blank">Maalämpö</a>, <a href="http://www.geodrill.fi/maalampo/lampokaivo/" target="_blank">lämpökaivo</a>), consumer packed food and recepies (<a href="http://www.snellman.fi/fi" target="_blank">Snellman</a>), staff recruiting (<a title="Operaria" href="http://www.operaria.fi/" target="_blank">Henkilöstöpalvelut</a>) and a lot of more that I can´t tell you..:)</p>
<h3>12. Drive and sail more boats</h3>
<p>I like that! But I sold my boat through my &#8220;awesome&#8221; home-made boat-selling website &#8220;<a href="http://halpavene.com/" target="_blank">Halpa vene .com</a>&#8221; (Cheap boat .com) site last year so either I have to get a new one or then I need to spend more time on the West coast where a lot of my friends are owning boats.</p>
<h3>13. Grab the first and the second place on bloggtoppen.fi at the same time</h3>
<p><a href="http://www.bloggtoppen.fi" target="_blank">Bloggtoppen.fi</a> is a Swedish toplist for blogs in Finland. I will try to get this blog and <a href="http://www.linabjorkskog.com/" target="_blank">Linas blog</a> as the two ones with the most visitors at the same time at least once in 2012.</p>
<h3>14. Get more likes on every Facebook page</h3>
<p>The Facebook pages I work with are already growing like crazy (<a href="http://www.facebook.com/muschfi" target="_blank">Musch</a>, <a href="http://www.facebook.com/HerraSnellman" target="_blank">Snellman</a>, and more..) so I don´t think this will be a problem. You can like <a href="http://www.facebook.com/seo.jonathan" target="_blank">this blog on Facebook</a> as well, if you want to receive updates and interesting info.</p>
<h3>15. Get over 2000 followers at Twitter so that I get rid of the stupid limit</h3>
<p>Twitter is always telling me that I have reached my following-limit when I try to follow new interesting people. That limit goes away if I have more than 2000 followers. You can <a href="https://twitter.com/JonathanBJ" target="_blank">follow me</a> for helping..:)</p>
<p><a href="http://twitter.com/JonathanBJ" class="twitter-follow-button">Follow @JonathanBJ</a><script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script></p>
<h3>16. Have more vacation</h3>
<p>I was free for two weeks in 2011. I will try to be free more this year.</p>
<h3>17. Travel more</h3>
<p>I was on two kitesurf-trips last year, one to <a href="http://www.kitesurfersblog.com/wakestyle/kitesurfing-in-hurghada" target="_blank">Hurghada, Egypt</a>, and one to <a href="http://www.linabjorkskog.com/resor/bilder-och-allmant-om-kitesurfing-i-tarifa" target="_blank">Tarifa, Spain</a>. This might be a little hard to top, but we´ll see.</p>
<h3>18. Earn more</h3>
<p>I wonder how it would be possible not to..</p>
<h3>19. Stay more positive than the world-economy</h3>
<p>This one is easy as well..:)</p>
<h3>20. Live more (2012 is one day longer, right?)</h3>
<p>Yes! One extra day! #Win!</p>
<h2>This was the new year promises</h2>
<p>I will put a check-sign before every line when I succeeded with the tasks. Stay tuned!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/my-20-new-year-promises-for-2012">My 20 new year promises for 2012</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/my-20-new-year-promises-for-2012/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SEO tip 10: SEO toolbars for Google Chrome</title>
		<link>http://jonathanbjorkskog.com/seo-tip-10-seo-toolbars-for-google-chrome</link>
		<comments>http://jonathanbjorkskog.com/seo-tip-10-seo-toolbars-for-google-chrome#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:59:40 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[SEO, Search engine optimization]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=911</guid>
		<description><![CDATA[<p>TweetLet’s telk about useful toolbars today. Useful SEO toolbars for Google Chrome, to be more specific. Most of / all of the toolbars I present are also avialable for Mozilla Firefox, but I can’t stand updating my browser everytime I starts it and still have to wait a long time before accessing the internet, so [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-10-seo-toolbars-for-google-chrome">SEO tip 10: SEO toolbars for Google Chrome</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton911" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-10-seo-toolbars-for-google-chrome&amp;via=jonathanbj&amp;text=SEO%20tip%2010%3A%20SEO%20toolbars%20for%20Google%20Chrome&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-10-seo-toolbars-for-google-chrome" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>Let’s telk about useful toolbars today. Useful <strong>SEO toolbars</strong> for Google Chrome, to be more specific. Most of / all of the toolbars I present are also avialable for Mozilla Firefox, but I can’t stand updating my browser everytime I starts it and still have to wait a long time before accessing the internet, so I have got used to use Google Chrome, and therefor I present the toolbars for just Chrome<span id="more-911"></span></p>
<h2>What do we want to know  from SEO-Toolbars when browsing the internet?</h2>
<p>I want to know a few things for being able to all the time keep track of competitors, and find opportunities for own sites. Mostly the later. Therefor I want to see some info about the site I am visiting right now.</p>
<h3>1.     Pagerank</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Pagerank-toolbar-for-google-chrome.png"><img class="size-full wp-image-912 alignleft" title="Pagerank toolbar for google chrome" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Pagerank-toolbar-for-google-chrome.png" alt="Pagerank toolbar for google chrome" width="48" height="48" /></a>Yes I know, pagerank is nothing important anymore, but it still shows kind of good what amount of links the visited site have. And the pagerank toolbar takes no space at all, this is one you need to have.  <a href="https://chrome.google.com/webstore/detail/pneoplpmnpjoioldpodoljacigkahohc" target="_blank">Download PageRank here</a>.</p>
<h3>2.     MozBar</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Moz-bar-chrome-plugin.png"><img class="alignleft size-full wp-image-913" title="Moz-bar chrome plugin" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Moz-bar-chrome-plugin.png" alt="Moz-bar chrome seo plugin toolbar" width="48" height="48" /></a>The mozbar is a tool that tells you the data you would get from opensiteexplorer right away, already when searching for websites or when visiting sites. You see how high ”MozRank” and ”Trust” the websites have. Really nice overlay in search engines. <a href="https://chrome.google.com/webstore/detail/eakacpaijcpapndcfffdgphdiccmpknp" target="_blank">Download it here!</a></p>
<h3>3.     Nofollow</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/noFollow-plugin.png"><img class="alignleft size-full wp-image-914" title="noFollow plugin" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/noFollow-plugin.png" alt="noFollow plugin" width="48" height="48" /></a>Nofollow is a really simple tool. It just makes a dotted line around every link that is nofollowed on every page you visit. It is then easy to see right away if you want to get a link from that site or not. It is really good in different social medias and web 2.0 services where you can make own pages and get links that are followed. <a href="https://chrome.google.com/webstore/detail/dfogidghaigoomjdeacndafapdijmiid" target="_blank">Get it here!</a></p>
<h3>4. Chrome sniffer</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Chrome-Sniffer-browser-plugin.png"><img class="alignleft size-full wp-image-915" title="Chrome Sniffer browser plugin" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Chrome-Sniffer-browser-plugin.png" alt="Chrome Sniffer browser plugin" width="48" height="48" /></a>The chrome sniffer is not really a SEO-toolbar or plugin, it just tells you what technique is used on every website you visit. I think it is really handy to see right away how a website is built. And you will realize that there are a lot of <a href="http://jonathanbjorkskog.com/category/wordpress">WordPress</a> websites out there after using this for a while..:) It also shows which javascript libraries is used, if the site have Facebook connect, if it has Google Analytics activated, and much more. <a href="https://chrome.google.com/webstore/detail/homgcnaoacgigpkkljjjekpignblkeae" target="_blank">Download it here</a>!</p>
<p>&nbsp;</p>
<p>There are a lot of more plugins, but start with these, these are the ones I use the most. Later I will talk about booklets useful for SEO as well. I hope you have fun using your new toolbars. And if you know better Chrome toolbars for SEO, do not hesitate to drop me a comment and tell me!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-10-seo-toolbars-for-google-chrome">SEO tip 10: SEO toolbars for Google Chrome</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/seo-tip-10-seo-toolbars-for-google-chrome/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO tip 9 &#8211; Do a keyword research for knowing what to write</title>
		<link>http://jonathanbjorkskog.com/seo-tip-9-do-a-keyword-research-for-knowing-what-to-write</link>
		<comments>http://jonathanbjorkskog.com/seo-tip-9-do-a-keyword-research-for-knowing-what-to-write#comments</comments>
		<pubDate>Mon, 19 Dec 2011 14:30:56 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[SEO Copywriting]]></category>
		<category><![CDATA[SEO, Search engine optimization]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=904</guid>
		<description><![CDATA[<p>TweetBefore you start writing, there is always good to do a keyword research for knowing what to write. Because you do not want to write a 100% onpage optimized text that appears on spot one in Google if nobody is searching for the text, right? That would be waste of time and money. So before writing, [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-9-do-a-keyword-research-for-knowing-what-to-write">SEO tip 9 &#8211; Do a keyword research for knowing what to write</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton904" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-9-do-a-keyword-research-for-knowing-what-to-write&amp;via=jonathanbj&amp;text=SEO%20tip%209%20%26%238211%3B%20Do%20a%20keyword%20research%20for%20knowing%20what%20to%20write&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-9-do-a-keyword-research-for-knowing-what-to-write" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>Before you start writing, there is always good to do a <strong>keyword research</strong> for knowing what to write. Because you do not want to <a title="SEO-trick 3: Checklist for writing search engine optimized texts" href="http://jonathanbjorkskog.com/checklist-for-writing-search-engine-optimized-texts">write a 100% onpage optimized text</a> that appears on spot one in Google if nobody is searching for the text, right? That would be waste of time and money. So before writing, make sure to do a keyword research.<span id="more-904"></span></p>
<h2>What tool to use in keyword research?</h2>
<p>There is one good free one, that is the <a href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google Keyword Tool</a>. That is more or less the standard tool for keyword research, from which everyone starts. And you have probably tested it already, but here is some more texts about how to really find the words to write about.</p>
<h3>Start with a broad keyword research</h3>
<p>When you are at the keyword tool page, start with writing a topic you are interested in writing about.</p>
<div id="attachment_906" class="wp-caption alignnone" style="width: 630px"><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Google-keyword-tool.png"><img class="size-large wp-image-906" title="Google keyword tool" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/Google-keyword-tool-620x217.png" alt="Google keyword tool - facebook covers" width="620" height="217" /></a><p class="wp-caption-text">I started my keyword tool really broad with searching for &quot;Facebook covers&quot;</p></div>
<p>Now when the new Facebook layout is launched, nobody wants to read my posts about <a title="Make a facebook profile banner" href="http://jonathanbjorkskog.com/make-a-facebook-profile-banner">how to make Facebook profile banners</a> anymore, so I have to write a new one about Facebook covers soon. It would be impossible for me to rank well with a blogpost about Facebook covers, there are too much competition, but I start with searching for that anyway.</p>
<h3>Keyword tool gives you suggestions</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/keywoord-research-for-facebook-covers.png"><img class="alignnone size-large wp-image-907" title="keywoord research for facebook covers" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/keywoord-research-for-facebook-covers-620x556.png" alt="keywoord research for facebook covers" width="620" height="556" /></a></p>
<p>So, I get a whole lot of suggestions of phrases to write about. I choose 10-20 of them and also adds some from my mind and puts them into the search box again.</p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/facebook-cover-in-keyword-research-.png"><img class="alignnone size-large wp-image-908" title="facebook cover in keyword research" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/facebook-cover-in-keyword-research--620x279.png" alt="facebook cover in keyword research" width="620" height="279" /></a></p>
<p>So, now I have a couple of headings to chose from. I will now write two or three blog posts about some of those &#8220;keywords&#8221;. And I will write it <a title="SEO-trick 3: Checklist for writing search engine optimized texts" href="http://jonathanbjorkskog.com/checklist-for-writing-search-engine-optimized-texts">optimized like in my SEO checklist</a>. And hopefully my blog post then ends up somewhere quite high in Google.</p>
<h3>Which words to chose in the keyword tool result table?</h3>
<p>That is always a good question. You have to chose the keywords with less competition and a lot of searches. Searches you see to the right. Competition is a little harder, but try to search the words in common Google search engine and see which sites appears in top 5. If it is small sites or blogs, then the competition might be quite low. If it is big brands and corporate sites, the competition might be a little higher. And if there is a lot of sites with the exact phrase in the title (The blue line you can click on for every spot in the search results), then the competition might be quite high as well, because that shows that someone else are trying to get the spots as well, by writing texts about exactly the same.</p>
<h3>Some more keyword tool tricks</h3>
<p>If you are not writing in English, remember to change the &#8220;location and language&#8221; in keyword tool to your language, and then just look at the column to the right, where it says &#8220;Local monthly searches&#8221;.</p>
<p>Put the &#8220;Match type&#8221; to &#8220;exact&#8221; in the left sidebar. Then you will only see how many are searching for exactly the phrase you are targeting. But I am also targeting a lot of long-tail words in every blogpost, so for me the &#8220;broad&#8221; or &#8220;phrase&#8221; is enough data.</p>
<p>If you find keywords with more than 1000 local monthly searches in &#8220;exact&#8221; mode and there are low competition, do not hesitate, write about the keyword! Like NOW!</p>
<p>If you find keywords with more than 10000 searches in &#8220;exact&#8221; mode, <a title="SEO-trick 6: Buy keyword-domains and build campaign-sites" href="http://jonathanbjorkskog.com/seo-trick-6-buy-keyword-domains-and-build-campaign-sites">buy a domain including that keyword and make a whole site about it</a>. :)</p>
<p>Remember that the numbers are not 100% reliable, and often just about 0ne third of the monthly searches presented. <em>Thanks for reading about how to do keyword researches in Google keyword tool</em>!</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-9-do-a-keyword-research-for-knowing-what-to-write">SEO tip 9 &#8211; Do a keyword research for knowing what to write</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/seo-tip-9-do-a-keyword-research-for-knowing-what-to-write/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO-trick 16  &#8211; Use a company blog for getting traffic from trends and seasons</title>
		<link>http://jonathanbjorkskog.com/seo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons</link>
		<comments>http://jonathanbjorkskog.com/seo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons#comments</comments>
		<pubDate>Fri, 16 Dec 2011 08:12:57 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[SEO Copywriting]]></category>
		<category><![CDATA[SEO, Search engine optimization]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=894</guid>
		<description><![CDATA[<p>TweetI hope you have tried to add a blog for gaining more traffic to your site? I will today relieve a little about blogging for trends and seasons. You know, things that happens all the time, some every year, like Christmas and Spring break for example, and other&#8217;s that are harder to plan for, like [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons">SEO-trick 16  &#8211; Use a company blog for getting traffic from trends and seasons</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton894" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons&amp;via=jonathanbj&amp;text=SEO-trick%2016%20%20%26%238211%3B%20Use%20a%20company%20blog%20for%20getting%20traffic%20from%20trends%20and%20seasons&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>I hope you have tried to add a blog for gaining more traffic to your site? I will today relieve a little about blogging for trends and seasons. You know, things that happens all the time, some every year, like Christmas and Spring break for example, and other&#8217;s that are harder to plan for, like earthquakes and your country winning the football world cup. But anyway, you can always use seasons and trends for gaining some more traffic. Let&#8217;s talk a little about how.<span id="more-894"></span></p>
<h2>Writing for getting traffic from trends and seasons</h2>
<p>You have probably already seen my <a title="The SEO Christmas calendar!" href="http://jonathanbjorkskog.com/the-seo-christmas-calendar">SEO Christmas calendar</a>. That´s one of my ways of getting more traffic now when it is Christmas. I just added a page where I gather 24 blog posts in a style of a calendar, and release one every day. Blog posts that I would have been writing anyway. That&#8217;s one way, rewriting the content you would have been writing anyway, so that it fits the season.</p>
<h3>Examples of company blogs writing special posts for the seasons</h3>
<p>If you want to see a more concrete example, from a website that does not belong to a brand selling stuff online, you should check out the Snellman.fi blog. That is also one of our customers, and here is one example of them making special kind of content for this season, Christmas: <a title="It is in Finnish again, sorry. " href="http://www.snellman.fi/fi/blogi/tommi/joulukinkun-paistaminen" target="_blank">Joulukinkun paistaminen</a>. That means something like &#8220;how to cook the christmas ham&#8221;. &#8220;Christmas ham&#8221; is a kind of food everybody eats in Finland and Sweden at Christmas.</p>
<h3>The trend for &#8220;Joulukinkun paistaminen&#8221;</h3>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/write-for-trends-example-of-christmas-trends.png"><img class="alignnone size-full wp-image-895" title="write for trends - example of christmas trends" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/write-for-trends-example-of-christmas-trends.png" alt="write for trends - example of joulukinkun paistaminen" width="608" height="572" /></a></p>
<p>I thought I should take a real example, so that you easier can see how to do. First, go to <a href="http://www.google.com/trends" target="_blank">Google Trends</a> (the picture) and find a phrase that is trending every year the same time, like this, you can see that it is being searched for in the end of the year every year. A no-brainer really, the word contains &#8220;christmas&#8221;. But it is a good and easy example. You might as well be able to make some content before Christmas still, or at least before new years eve.</p>
<p>Find a few phrases that is trending the same time then search for them in Google for checking if the competition is hard or not. Then chose the one with the most traffic (Check keyword tool for this as well) and the least competition (this is hard, I know, but you learn by doing), and write a long blog post about that. Like the &#8220;<a href="http://www.snellman.fi/fi/blogi/tommi/joulukinkun-paistaminen" target="_blank">Joulukinkun paistaminen</a>&#8221; one. Then take a few of the other phrases that are trending the same time and write blog posts about them as well, linking to the one that is &#8220;most important&#8221;. If you have a strong enough domain, and your site is built in the right way, you will probably find a lot of phrases for which your site will be found on the first page in Google for, just by writing the blog posts.</p>
<p>And the best part, they will be there next year as well, <strong>when the phrase is trending again</strong>!</p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/joulukinkun-paistaminen-a-trend-at-christmas-in-Finland.png"><img class="alignnone size-large wp-image-896" title="joulukinkun paistaminen - a trend at christmas in Finland" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/joulukinkun-paistaminen-a-trend-at-christmas-in-Finland-620x516.png" alt="joulukinkun paistaminen - a trend at christmas in Finland" width="620" height="516" /></a></p>
<p>So, if you have not been checking Google trends yet, be sure to check it. And remember to <a title="SEO-trick 3: Checklist for writing search engine optimized texts" href="http://jonathanbjorkskog.com/checklist-for-writing-search-engine-optimized-texts">write the texts search engine friendly and totally onpage optimized</a>, even if you of course is writing for the visitors, not for search engines. But remember to be aware of the search engines as well, otherwise you will not have any visitors to write for..:) Here is another blogpost of mine where Google trends is used: <a title="Google correlate – Check trends and draw lines" href="http://jonathanbjorkskog.com/google-correlate-check-trends-and-draw-lines">Search by drawing in Google Correlate</a>. Are you still not sure of why you should have a company blog? Then check my blog post about <a href="http://www.genero.fi/5-reasons-to-have-a-company-blog" target="_blank">reasons for having a company blog</a> (On Genero.fi).  Thanks for reading. <a title="The SEO Christmas calendar!" href="http://jonathanbjorkskog.com/the-seo-christmas-calendar">Back to the calendar</a>.</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons">SEO-trick 16  &#8211; Use a company blog for getting traffic from trends and seasons</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/seo-trick-16-use-a-company-blog-for-getting-traffic-from-trends-and-seasons/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO-trick 8: Tools for checking backlinks to own and competitors website</title>
		<link>http://jonathanbjorkskog.com/seo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website</link>
		<comments>http://jonathanbjorkskog.com/seo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website#comments</comments>
		<pubDate>Sat, 10 Dec 2011 10:10:20 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Linkbuilding SEO]]></category>
		<category><![CDATA[SEO, Search engine optimization]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=888</guid>
		<description><![CDATA[<p>TweetWhen you start working with a site, you havet o know what you have to work with, right? You may want to know what kind of links tou already have pointing to your site, and of course, you want to know what kind of backlinks your competitor have pointing to his site or subpage. Let’s [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website">SEO-trick 8: Tools for checking backlinks to own and competitors website</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton888" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website&amp;via=jonathanbj&amp;text=SEO-trick%208%3A%20Tools%20for%20checking%20backlinks%20to%20own%20and%20competitors%20website&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>When you start working with a site, you havet o know what you have to work with, right? You may want to know what kind of links tou already have pointing to your site, and of course, you want to know <strong>what kind of backlinks your competitor have</strong> pointing to his site or subpage. Let’s check!<span id="more-888"></span></p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/links-to-sites.jpg"><img class="alignnone size-large wp-image-901" title="links to sites" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/links-to-sites-620x469.jpg" alt="links to sites" width="620" height="469" /></a></p>
<h2>What kind of online tools are avialable for checking backlinks to websites?</h2>
<p>We are focusing on online tools, because they are faster and easier to start with. There was one good, Yahoo site explorer, but that is now shut down by Yahoo, unfortunately. But luckily we have a few others.</p>
<h3>Opensiteexplorer for checking backlinks</h3>
<p><a href="http://www.opensiteexplorer.org/"><img class="size-large wp-image-899 alignleft" title="opensiteexplorer for checking backlinks to competitors websites" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/opensiteexplorer-620x236.png" alt="opensiteexplorer for checking backlinks to competitors websites" width="260" height="99" /></a>There is one tool that is quite good, that is the opensiteexplorer by SeoMoz.. You find it at <a href="http://www.opensiteexplorer.com">www.opensiteexplorer.com</a>. You can go there for testing it, just type in your site url and click explore. Without signing in, you will see the amount of links, and the anchor texts and url’s from which the five strongest links come (according to opensiteexplorer, they does not need to be the strongest for real). If you make a free account, you will see anchor texts and url’s for all the links pointing to your site. And, you can as well check the tab ”compare link metrics” for comparing your own site with up to four of your competitors. There is a paid account as well avialable at Opensiteexplorer, which you can use for getting even more data and ranking reports. That costs $99 a month. But for only link-checking, the free but signed in –account is good enough to start with. Negative things with opensiteexplorer is that it does not have as much sites in its register as Yahoo site explorer had.</p>
<h3>Ahref.com, a new resource for checking backlinks</h3>
<p><a href="http://ahrefs.com/"><img class="size-full wp-image-900 alignleft" title="ahrefs for checking backlinks" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/ahrefs-for-checking-backlinks.png" alt="ahrefs for checking backlinks" width="139" height="47" /></a>I recently stumbled upon ahrefs.com, that also has its own register of sites, just like opensiteexplorer. This is a new resource and I have not had time to explore the quality of the register fully yet. But you can check backlinks for free at <a href="http://www.ahrefs.com">www.ahrefs.com</a>, and if you make a free account, you get some more data.</p>
<h3>Yaheoo &#8220;link:&#8221; for backlink checking</h3>
<p>Yahoo has another way of checking backlinks as well, you can search for link:yoursite.com in the common Yahoo search engine. It is not as good as the old siteexplorer, but it works, it is free, and you do not need a login.</p>
<h3>Google webmaster tools</h3>
<p>Google webmaster tools is quite good for checking backlinks to your own site. Here it is impossible to check links to other peoples sites like in the other ones. But it is still quite good, it is Google’s own data you see, and it is still Google we are optimizing for. Register your site at <a href="http://www.google.com/webmasters">www.google.com/webmasters</a> and verify your site for getting started. Tip: Sync your webmaster tools data with analytics, for getting all the info from one place.</p>
<h3>Checking backlinks in common Google search engine (bad)</h3>
<p>Google allows you to check backlinks to sites in the search field as well, you just type in link:yourdomain.com and hit search. It is really bad, it does not show anything that makes sense. Sometimes you find some links there, but it is often just a percent or two of every backlink that there is.</p>
<h3>Why should I check backlinks to competitors sites?</h3>
<p>First, it is interesting to see what kind of competition you have. Second, you can probably steal a couple o flinks from them, because if they have got links from a site, you can prbably get links from the same site with some work.</p>
<p>Thanks for reading about tools for checking backlinks, this was a post in the <a title="The SEO Christmas calendar!" href="http://jonathanbjorkskog.com/the-seo-christmas-calendar">SEO Christmas calendar</a> as well.</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website">SEO-trick 8: Tools for checking backlinks to own and competitors website</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/seo-trick-7-tools-for-checking-backlinks-to-own-and-competitors-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seo tip 7 &#8211; The WordPress SEO plugin you need to have installed</title>
		<link>http://jonathanbjorkskog.com/seo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed</link>
		<comments>http://jonathanbjorkskog.com/seo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed#comments</comments>
		<pubDate>Wed, 07 Dec 2011 20:27:16 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[SEO, Search engine optimization]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WordPress SEO]]></category>

		<guid isPermaLink="false">http://jonathanbjorkskog.com/?p=878</guid>
		<description><![CDATA[<p>TweetHere is another WordPress based trick for you. I know that most of you are using WordPress anyway, and everybody that does SEO will sooner or later have to get used t oWordPress, so I think that I can focus quite hard on WordPress in my SEO tutorials. For example, if you are going to [...]</p><p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed">Seo tip 7 &#8211; The WordPress SEO plugin you need to have installed</a></p>]]></description>
			<content:encoded><![CDATA[<div id="tweetbutton878" class="tw_button" style="float:right;margin-left:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed&amp;via=jonathanbj&amp;text=Seo%20tip%207%20%26%238211%3B%20The%20WordPress%20SEO%20plugin%20you%20need%20to%20have%20installed&amp;related=JonathanBJ:I+suggest+you+follow+me+on+Twitter+for+the+latest+awesomeness%21&amp;lang=en&amp;count=vertical&amp;counturl=http%3A%2F%2Fjonathanbjorkskog.com%2Fseo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://jonathanbjorkskog.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div><p>Here is another WordPress based trick for you. I know that most of you are using WordPress anyway, and everybody that does SEO will sooner or later have to get used t oWordPress, so I think that I can focus quite hard on WordPress in my SEO tutorials. For example, if you are going to <a title="SEO-trick 6: Buy keyword-domains and build campaign-sites" href="http://jonathanbjorkskog.com/seo-trick-6-buy-keyword-domains-and-build-campaign-sites">build campaign sites on keyword domains (trick 6)</a>, you will probably use WordPress. There are a lot of plugins for WordPress SEO, a lot of plugins that all do the same, and a lot that is unnecessary, and a lot of common plugins that improves the onpage optimization even if the plugin description does not say so. Let&#8217;s check some plugins!<span id="more-878"></span></p>
<h2>The number one WordPress SEO plugin you need to have</h2>
<p>I will tell you about the best WordPress SEO plugin and tell you how to configure it for getting the best possible optimization for your WordPress site.</p>
<h3>WordPress SEO / Yoast SEO</h3>
<p>If you only want one plugin for your whole WordPress installation, this is the one you should choose. You can download it <a title="Yoast SEO" href="http://wordpress.org/extend/plugins/wordpress-seo/" target="_blank">here</a>. This is a SEO-plugin that is a combination of a lot of earlier plugins. It is made by Joost de Valk, and only about a year old now. You can read more about it on Joost page <a title="Yoast" href="http://yoast.com/wordpress/seo/" target="_blank">WordPress SEO</a>. ( &lt;&#8211; That&#8217;s btw the kind of links you want to get from other people, links that tells you what your site is about already in the link-text. Yoast plugin is so good that I gladly link to him that way and helps him to stay on top for the phrase &#8220;wordpress seo&#8221;. He is btw already number one for that, so he knows what he is doing!). The WordPress SEO plugin is completely free by the way. The Yoast SEO plugin totally replaces the two earlier hyped plugins &#8220;All in one SEO&#8221; and &#8220;Headspace 2&#8243;. So forget them. :)</p>
<h3>Configure WordPress SEO by Yoast</h3>
<p>Download the plugin, upload it to your plugin directory and activate it. Or just search for it and install it through the WordPress dashboard.</p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/yoast-seo-wordpress-plugin.png"><img class="alignleft size-full wp-image-879" title="yoast-seo-wordpress-plugin" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/yoast-seo-wordpress-plugin.png" alt="yoast-seo-wordpress-plugin" width="165" height="239" /></a>When you have activated it, you will find a new nice sidebar on the bottom left of your administration panel.</p>
<p>Start by clicking the &#8220;Titles&#8221; link. There you are able to add a title to the front page of your blog, the page where all the posts are gathered. Write  a nice title and description for that.</p>
<p>In the fields &#8220;post&#8221;, &#8220;page&#8221;, &#8220;category&#8221; and &#8220;post_tag&#8221;,  add this: <span style="color: #ff0000;">%%title%%</span>. Or if you want a more &#8220;branded&#8221; site, add <span style="color: #ff0000;">%%title%% &#8211; Your site name.com</span>.</p>
<p>In the description fields for the &#8220;post&#8221; and &#8220;page&#8221;, add %%excerpt%%. In the description field for categories and post_tag, add <span style="color: #ff0000;">%%category_description%%</span> vs <span style="color: #ff0000;">%%tag_description%%<span style="color: #000000;">. This will add the category description that we wrote <a title="SEO-trick 2: Use WordPress categories right for better onpage optimization" href="http://jonathanbjorkskog.com/seo-trick-2-use-wordpress-categories-right-for-better-onpage-optimization">here</a> to the meta description as well.</span></span></p>
<p>Then, save it and go check a post you have written and see if your title looks like it should. If not, you can fix it in two ways (Some templates does not support this very well). Option one: Go to your template editor and replace whatever you find in <span style="color: #0000ff;">header.php</span> that looks like this: <span style="color: #ff0000;">&lt;title&gt;***&lt;/title&gt;</span>. Replace it with this: <span style="color: #ff0000;">&lt;title&gt;&lt;?php wp_title(&#8221;); ?&gt;&lt;/title&gt;</span> and it will start working. Option two: Do this if you cannot do number one. Go back to the titles tab, and check the box &#8220;Force rewrite titles&#8221;. This will do the same as number one, but slow down your site slightly. You will probably not even notice it, but option one is still better.</p>
<p>Then, go to the tab &#8220;Permalinks&#8221; and check some boxes. If you have a new blog with not a lot of posts yet, check this box: &#8220;Strip the category base (usually <code>/category/</code>) from the category URL&#8221;. That will do exactly what it says. Check the next one as well, &#8221; E<label for="trailingslash">nforce a trailing slash on all category and tag URL&#8217;s&#8221;. And if you have a lot of images on your blog and have by mistake been linking them all to an &#8220;attachment page&#8221;, then be sure to check the box &#8220;Redirect attachment URL&#8217;s to parent post URL&#8221;. That will help you get rid of a lot of duplicate content.</label></p>
<p>Then, go to the tab &#8220;Indexation&#8221; and check a lot of boxes for excluding a lot of pages with duplicate content from the index. Check the following:</p>
<ul>
<li>This site&#8217;s search result pages</li>
<li>The login and register pages</li>
<li>All admin pages</li>
<li>Author archives (in most cases)</li>
<li>Date-based archives (you do not want a lot of date-pages in the index)</li>
<li>Tag archives (if you have not came up with a good idea of making the tag-pages unique). The Category pages can be indexed if you have made them unique like this for example: <a title="SEO-trick 2: Use WordPress categories right for better onpage optimization" href="http://jonathanbjorkskog.com/seo-trick-2-use-wordpress-categories-right-for-better-onpage-optimization">Use categories right for better onpage SEO</a>.</li>
<li>Check every box in the area &#8220;Internal nofollow setting&#8221;.</li>
<li>In most cases you can check both the boxes under &#8220;Archive settings&#8221; as well.</li>
</ul>
<h2>Writing posts with Yoast SEO plugin active</h2>
<p>Writing posts with this plugin activated is fun. Because it tells you if you do it right all the time. It makes your posts <a title="SEO-trick 3: Checklist for writing search engine optimized texts" href="http://jonathanbjorkskog.com/checklist-for-writing-search-engine-optimized-texts">almost as good onpage optimized as i described </a>some days ago. Below the box you can add a keyword or phrase, and the plugin will then tell you what to do:</p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/wordpress-seo-by-yoast.png"><img class="alignnone size-large wp-image-882" title="wordpress seo by yoast" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/wordpress-seo-by-yoast-620x421.png" alt="wordpress seo by yoast" width="620" height="421" /></a></p>
<p>Just add a keyword to the &#8220;Focus keyword&#8221; box and start writing your content. Click &#8220;save draft&#8221; now and then for updated status in the green &#8220;Yes&#8221;-words. (They are &#8220;no&#8221; to begin with).</p>
<p><strong>The page analysis tab in Yoast WordPress SEO:</strong></p>
<p><a href="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/wordpress-seo-by-yoast-page-analysis-tab.png"><img class="alignnone size-large wp-image-884" title="wordpress seo by yoast page analysis tab" src="http://jonathanbjorkskog.com/wp-content/uploads/2011/12/wordpress-seo-by-yoast-page-analysis-tab-620x402.png" alt="wordpress seo by yoast page analysis tab" width="620" height="402" /></a></p>
<p>In the page analysis tab you will see a more detailed view of your text. Try to get every point green. They are red to begin width. What you see above is the analysis for this text that I you are now reading.</p>
<h2>Alternative WordPress SEO plugin</h2>
<p>I know one other plugin that does the same as this, and even more detailed, but that costs a little. If you want a more detailed view you can test that as well, it is called <a title="SEO Pressor" href="http://c80abg2bjkn1rhhpqbzgup-k1d.hop.clickbank.net/" rel="nofollow" target="_blank">SEO Pressor</a> and is made by Daniel Tan. I have reviewed that earlier here: <a title="seo pressor plugin review (For WordPress)" href="http://professionalwpthemes.com/seo-pressor-plugin-for-onage-optimization" target="_blank">SEO Pressor plugin for WordPress optimization</a>. You can <a href="http://c80abg2bjkn1rhhpqbzgup-k1d.hop.clickbank.net/" rel="nofollow" target="_blank">buy / download a test version here</a>.</p>
<p>Thanks for reading my seventh post in the <a title="The SEO Christmas calendar!" href="http://jonathanbjorkskog.com/the-seo-christmas-calendar">SEO Christmas Calendar</a>. This was all about WordPress SEO plugins, or mainly about Yoast SEO, a great plugin to use for learning SEO with WordPress.</p>
<p>This post was originally found here: <a href="http://jonathanbjorkskog.com/seo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed">Seo tip 7 &#8211; The WordPress SEO plugin you need to have installed</a></p>]]></content:encoded>
			<wfw:commentRss>http://jonathanbjorkskog.com/seo-tip-7-the-wordpress-seo-plugin-you-need-to-have-installed/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 10/57 queries in 0.157 seconds using disk: basic
Object Caching 2561/2638 objects using disk: basic

Served from: jonathanbjorkskog.com @ 2012-05-18 04:39:27 -->
