<?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>Weblog for Asbjorn &#187; wordpress</title>
	<atom:link href="http://www.asbjornriedel.com/category/wordpress-plugins/feed" rel="self" type="application/rss+xml" />
	<link>http://www.asbjornriedel.com</link>
	<description>Not just another WordPress weblog</description>
	<lastBuildDate>Tue, 23 Aug 2011 18:14:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Silo Builder Plugin On Youtube</title>
		<link>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:02:33 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugins]]></category>
		<category><![CDATA[wordpress silo builder]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=209</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/9ATDPzzXFjk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/9ATDPzzXFjk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/silobuilderpluginonyoutube/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nofollow or Follow</title>
		<link>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow#comments</comments>
		<pubDate>Thu, 08 Oct 2009 11:32:15 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress link cloaking]]></category>
		<category><![CDATA[wordpress silo]]></category>
		<category><![CDATA[wordpress theme bleeding]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=155</guid>
		<description><![CDATA[Couple of months ago Google changed part of their nofollow strategy. What they changed was the way they calculated page rank distribution to outgoing links. However the main goal of nofollow was to let Google know that a link out &#8230; <a href="http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Couple of months ago Google changed part of their nofollow strategy.</p>
<p>What they changed was the way they calculated page rank distribution to outgoing links.</p>
<p>However the main goal of nofollow was to let Google know that a link out of a blog was not to be considered as relevant and should not be counted as such.</p>
<p>The &#8216;potential&#8217; problem with outgoing links to irrelevant sites is that our blog will be regarded as less focused, it would be a case of Theme Bleeding (*1). The theme loosing relevancy.</p>
<p>With Google&#8217;s change of the PR allocation many SEO experts suggested to abandon nofollow altogether, however I think this would cause the undesired effect above.</p>
<p>Still, there is be a better way to resolve the problem of Theme Bleeding (*1). And it would also be effective for any other searchengine that obey the rules in the robots.txt file.</p>
<p>The robots.txt file is a set of rules that tells the search engines what they can index of your site and what they can not.</p>
<p>With <strong>robots.txt </strong>we can instruct the search engines to skip directories, and that is what we can use for our improved nofollow strategy.</p>
<p>Normally when you write a blogpost and enter a link like &lt;<strong>a href = &#8221; http: / / somewhere.com &#8220;</strong>&gt; the searchengine will follow the link.</p>
<p>To prevent this from happening we will change our link to<br />
&lt;<strong>a href = &#8221; redirect/redirect.php?redirect=http : / / somewhere.com &#8220;</strong>&gt;</p>
<p>The content of redirect.php would be</p>
<p><strong>&lt;?php<br />
header(&#8220;location : $GET['redirect']&#8220;);<br />
?&gt;</strong></p>
<p>and the contents of our robot.txt would be</p>
<p><strong>User-agent: *<br />
Disallow: /r/</strong></p>
<p>You have now implemented a nofollow strategy that works for all search engines. An open question is does Google assign outgoing page rank different when you use robots.txt rather than when there are no rules in robots.txt. I have no idea. I guess it must be tested.</p>
<p>One benefit of the process could be that you are now cloaking your links to affiliate sites, though the fact that the destination url is in the redirect url, may be enough to give away the game.</p>
<p>And trouble with the whole process is that we need to remember to put in our link in the redirect form rather than in the normal form.</p>
<p>If you are using WordPress as your blogging platform and have a lot of existing posts, with affiliate links, then this process can become very boring.</p>
<p>And since I have a few of these blogs, I wrote a wordpress plugin to do the process automatically.</p>
<p>My requirements to the plugin are:</p>
<p>* Automatically change all external links in the blog to redirected ones<br />
* Cloak the links in the process, so the redirection destination is not shown.<br />
* Make it possible to exclude selected links (to pass outgoing PR to sites of choice)<br />
* Reorganize the internal linking in the blog so all postings in one category are linked together. Increase Theme Density (*1)<br />
* send an email with weekly and monthly click through stats in CSV format, so it can be imported into excell.</p>
<p>I have installed version 1 of my plugin on several of my blogs and will test over the next period how the ranking is improved in the search engines.</p>
<p>Does this have your interest?</p>
<p>I plan to package the plugin up and sell it eventually.</p>
<p>However, to do this I will need time to test it on different blogs, with different themes and layouts.</p>
<p>Unfortunately that takes time <img src='http://www.asbjornriedel.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  but I shall let you know when it is ready.</p>
<p><br>If you want to know when the plugin will be up for sale enter your name and email below, and I shall let you know.<br><!-- Web Form Generator 2.0 -->
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="118034868">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="wplib">
<input type="hidden" name="redirect" value="http://www.asbjornriedel.com/" id="redirect_f474fb0fac200212b7a83811be732a1b">
<input type="hidden" name="meta_redirect_onlist" value="http://www.asbjornriedel.com/">
<input type="hidden" name="meta_adtracking" value="">
<!-- Web Form Generator 2.0 -->
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="118034868">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="wplib">
<input type="hidden" name="redirect" value="http://www.asbjornriedel.com/?wplib=y" id="redirect_f474fb0fac200212b7a83811be732a1b">
<input type="hidden" name="meta_redirect_onlist" value="http://www.asbjornriedel.com/?wplib=y">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
<table>
<tr><td colspan=2><center></center></td></tr>
<tr><td>Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
<tr><td>Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
    <tr><td colspan=2><center></center></td></tr>
<tr><td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
</table>
<img src="http://forms.aweber.com/form/displays.htm?id=jIwcDMwsHGwc" border="0" />
</form>
</center></p>
<p>You can read more about Theme Bleeding here.</p>
<p>*1) http://www.seo2020.com/lsi/avoid-theme-bleeding.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/nofollow-or-follow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Existing WordPress Blogs Into Silo Structures</title>
		<link>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures</link>
		<comments>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures#comments</comments>
		<pubDate>Fri, 06 Mar 2009 09:57:09 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[internal blog linking]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[silo site builder]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=110</guid>
		<description><![CDATA[The advantage of a blog is surely that it is easy to add content. You can optimise the blog a bit, using categories and titles in the url, but the linking inside a standard wordpress blog is, to say the &#8230; <a href="http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The advantage of a blog is surely that it is easy to add content.</p>
<p>You can optimise the blog a bit, using categories and titles in the url, but the linking inside a standard wordpress blog is, to say the least, a bit chaotic.</p>
<p>The best way would be is postings were linked together on the categories (topics) rather than on the date of publication.</p>
<p>To achieve this I wrote a <a title="Wordpress Silo Plugin" href="https://www.e-junkie.com/ecom/gb.php?ii=761434&amp;c=ib&amp;aff=24047&amp;cl=32148&quot; target=&quot;ejejcsingle&quot;" target="_blank">wordpress silo plugin</a> that will reorganise the linking between the posts dynamically. This means when I add a new post like the present it will automatically be inserted in the row of links for the categories.</p>
<p><a href="http://www.asbjornriedel.com/wp-content/uploads/2009/03/silomap1.png"><img class="aligncenter size-full wp-image-146" title="silo structure of blog" src="http://www.asbjornriedel.com/wp-content/uploads/2009/03/silo.png" border="0" alt="silo structure of blog" width="345" height="353" /></a></p>
<p>So now it is only to see how the search engines will react to this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/internet-marketing/changing-existing-wordpress-blogs-into-silo-structures/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhoniz-ing a blog</title>
		<link>http://www.asbjornriedel.com/wordpress-plugins/iphoniz-ing-a-blog</link>
		<comments>http://www.asbjornriedel.com/wordpress-plugins/iphoniz-ing-a-blog#comments</comments>
		<pubDate>Mon, 10 Nov 2008 19:53:47 +0000</pubDate>
		<dc:creator>Asbjorn</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[iphone wordpress blog]]></category>
		<category><![CDATA[wordpress tweeks]]></category>

		<guid isPermaLink="false">http://www.asbjornriedel.com/?p=59</guid>
		<description><![CDATA[Thanks to an article on mashable.com and the service offered by intersquash.com my blog is now also easily accessible from the iPhone Not that I expect many to read by blog there. The article from mashable is here.]]></description>
			<content:encoded><![CDATA[<p>Thanks to an article on mashable.com and the service offered by intersquash.com my blog is now also easily accessible from the iPhone</p>
<p>Not that I expect many to read by blog there.</p>
<p>The article from mashable is <a title="iPhonizing a blog" href="http://mashable.com/2008/11/08/iphone-website/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asbjornriedel.com/wordpress-plugins/iphoniz-ing-a-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

