<?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>Ideologics &#187; Blogging</title>
	<atom:link href="http://www.ideologics.co.uk/topics/blogging/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ideologics.co.uk</link>
	<description>All About Computers</description>
	<lastBuildDate>Sun, 04 Mar 2012 07:13:26 +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>My custom Memcached WordPress Plugin</title>
		<link>http://www.ideologics.co.uk/blogging/my-custom-memcached-wordpress-plugin</link>
		<comments>http://www.ideologics.co.uk/blogging/my-custom-memcached-wordpress-plugin#comments</comments>
		<pubDate>Sat, 24 Jul 2010 20:15:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.ideologics.co.uk/?p=917</guid>
		<description><![CDATA[Something that I have found irritating about using WordPress for my blogging needs is its performance &#8211; or lack thereof! On a blog like Ideologics (that is mainly information based) rebuilding each page whenever it is viewed leads to an &#8230; <a href="http://www.ideologics.co.uk/blogging/my-custom-memcached-wordpress-plugin">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Something that I have found irritating about using WordPress for my blogging needs is its performance &#8211; or lack thereof! On a blog like Ideologics (that is mainly information based) rebuilding each page whenever it is viewed leads to an incredible waste of processing power.</p>
<p><a href="http://memcached.org/">Memcached</a> was developed by the authors of LiveJournal, and can be used in many ways to optimise a website. My method is to simply cache an entire page&#8217;s HTML the first time it is viewed.</p>
<p>Now this isn&#8217;t a traditional plugin, so bear with me. The processing script is called memcache.php, and its content is as follows:</p>
<pre>  // note that if you change this variable, the cache restarts!
  $memcache_sectext=md5('mysite'.date('YMd'));
  $memcached=false;

  // display a 'reset this page in cache' link at bottom of page?
  $allowreset=true;

  if (function_exists('memcache_connect')) {
    $memcached=true;
    $memcache=@memcache_connect('127.0.0.1',11211) OR $memcached=false;
  } else {
    $memcached=false;
  }

  function getCache($var_name) {
    global $memcached,$memcache,$memcache_sectext;
    if ($memcached)
      $var_value=$memcache-&gt;get($memcache_sectext.'_'.$var_name);
    else
      $var_value='';
    return $var_value;
  }
  function setCache($var_name,$var_value) {
    global $memcached,$memcache,$memcache_sectext;
    if ($memcached)
      $memcache-&gt;set($memcache_sectext.'_'.$var_name,$var_value);
  }

  $domain=$_SERVER['HTTP_HOST'];
  $uri=$_SERVER['REQUEST_URI'];

  if ((isset($_GET['recache'])) AND ($allowreset)) {
    setCache($_GET['recache'],'');
    header('location: '.$_GET['recache']);
    exit;
  }

  $html=getCache($uri);
  if ($html!=='caching') {
    if (strlen($html)&gt;100) {
      echo $html;
      if ($allowreset) echo '&lt;p align="center"&gt;This page was retrieved'
        .' from our cache. &lt;a href="/memcache.php?recache='
        .urlencode($uri).'" ref="nofollow"&gt;Recompile this page&lt;/a&gt;.&lt;/p&gt;';
      exit;
    } else {
      setCache($uri,'caching');
      $html=file_get_contents('http://'.$domain.$uri);
      if (strlen($html)&gt;100) {
        setCache($uri,$html);
        echo $html;
        if ($allowreset) echo '&lt;p align="center"&gt;This page was retrieved'
          .' from our cache. &lt;a href="/memcache.php?recache='
          .urlencode($uri).'" ref="nofollow"&gt;Recompile this page&lt;/a&gt;.&lt;/p&gt;';
        exit;
      } else {
        setCache($uri,'');
      }
    }
  }</pre>
<p>I include this file in /index.php, like this:</p>
<pre>define('WP_USE_THEMES', true);

include('memcache.php');

/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');</pre>
<p>Any page that is viewed via index.php (that&#8217;s posts, category listings, the home page etc.) will be cached and served automatically by memcache.php. Really simple, isn&#8217;t it? The cache is reset every day, as to introduce any new content that is dynamic.</p>
<p>It is worth noting that if a cached copy of the requested page is available and served, that WordPress doesn&#8217;t even make a connection to the database &#8211; NO queries are executed. There is no method faster than this.</p>
<p>The downsides to this method:</p>
<ol>
<li>When you make a new post or edit an existing post, the changes won&#8217;t show up until the next day. To help resolve this, I added an option to reset individual pages in the cache. You can turn the option on and off with the variable $allowreset at the top of the script. The option to reset a page appears at the very end of the page. (I&#8217;d recommend disallowing /memcache.php to your robots.txt file too!)</li>
<li>Every page in the cache appears like it would to a guest. Users cannot log in with this method &#8211; YET.</li>
</ol>
<p>I may turn this into an actual plugin, but for now there&#8217;s no demand. If you have any comments or suggestions, my ears are wide open!</p>
<p>NOTE: If you were to receive a burst of traffic due to being digg&#8217;d or something, I have no doubt that this implementation of Memcached in WordPress would allow your server to take care of it with no problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/my-custom-memcached-wordpress-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging posts produce ZERO AdSense clicks &#8211; PERIOD</title>
		<link>http://www.ideologics.co.uk/blogging/blogging-posts-produce-zero-adsense-clicks-period</link>
		<comments>http://www.ideologics.co.uk/blogging/blogging-posts-produce-zero-adsense-clicks-period#comments</comments>
		<pubDate>Tue, 23 Mar 2010 07:19:10 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.ideologics.co.uk/?p=835</guid>
		<description><![CDATA[After looking over my Analytics data for AdSense, I&#8217;ve realised that my blogging posts produce NO clicks. I won&#8217;t tell you how many impressions this is based on, but rest assured that my assumption is sound. This is clearly bringing &#8230; <a href="http://www.ideologics.co.uk/blogging/blogging-posts-produce-zero-adsense-clicks-period">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After looking over my Analytics data for AdSense, I&#8217;ve realised that my blogging posts produce NO clicks. I won&#8217;t tell you how many impressions this is based on, but rest assured that my assumption is sound. This is clearly bringing my overall CTR down.</p>
<p>The &#8216;Computer Help&#8217; category tends to be the only category that produces clicks, and so I have decided to only display ads on that category, as the ads offer no additional value to the user nor myself in other categories.</p>
<p>I&#8217;m going to be studying my Analytics data more closely to see if I can work out how to remove potentially useless impressions from pages depending on factors such as country, browser type, length of document. I recommend you all do the same, to avoid or remove smart pricing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/blogging-posts-produce-zero-adsense-clicks-period/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does having standards make you a snob?</title>
		<link>http://www.ideologics.co.uk/blogging/does-having-standards-make-you-a-snob</link>
		<comments>http://www.ideologics.co.uk/blogging/does-having-standards-make-you-a-snob#comments</comments>
		<pubDate>Sat, 29 Aug 2009 20:30:33 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.ideologics.co.uk/?p=758</guid>
		<description><![CDATA[Recently I came across Everton&#8217;s post regarding lingscars.com &#8211; claiming it was the worst website ever! At first I laughed profusely, but soon came to realise that laughing at someone elses work and success is quite rude. Ling responded to &#8230; <a href="http://www.ideologics.co.uk/blogging/does-having-standards-make-you-a-snob">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I came across <a href="http://www.connectedinternet.co.uk/2009/08/25/is-this-the-worst-website-ever/">Everton&#8217;s post regarding lingscars.com</a> &#8211; claiming it was the worst website ever! At first I laughed profusely, but soon came to realise that laughing at someone elses work and success is quite rude.</p>
<p>Ling responded to Everton with a snap of reality, reminding him that she shifts millions of pounds worth of cars every year, and people enjoy her site. In reality, she is quite successful, and if I were to choose a website to sell cars I probably wouldn&#8217;t be as daring as she is.</p>
<p>Which leads me to my question &#8211; does having standards make you a snob? At what cost do we adhere to standards?</p>
<p>Back in 2002, when I started <a href="http://www.bloopdiary.com">BloopDiary.com</a>, the site had a colourful appearances like crayons. It grew popular very quickly. Now days, it is somewhat bland in appearance. When it was colourful, it stood out from the other sites. I almost miss my awful colour scheme!</p>
<p>And look at other sites, such as <a href="http://www.plentyoffish.com">PlentyOfFish.com</a>, a hugely successful website with a layout that a 5 year old could design.</p>
<p>What <a href="http://www.lingscars.com">Ling&#8217;s</a> site, my site and Plenty Of Fish all have in common is one thing &#8211; the value they offer to the people that visit. Somewhere we get lost in design, and forget about what really matters. To be honest, when I&#8217;m looking for something on the web, I could care less about what the website looks like, as long as I can use it and it gives me what I want. I definitely don&#8217;t search Google and then drool over how a page looks.</p>
<p>I think we need to step out of our boxes for a while, and look in as a visitor before our collective ego explodes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/does-having-standards-make-you-a-snob/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eye On Silicon becomes Ideologics</title>
		<link>http://www.ideologics.co.uk/blogging/eye-on-silicon-becomes-ideologics</link>
		<comments>http://www.ideologics.co.uk/blogging/eye-on-silicon-becomes-ideologics#comments</comments>
		<pubDate>Wed, 22 Jul 2009 19:57:17 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=737</guid>
		<description><![CDATA[Recently I&#8217;ve been getting back in to blogging. Part of blogging, that I&#8217;m sure is as true for newbies as it is for the experienced bloggers, is research. Researching how to best mesh your blog in with the blogosphere. While &#8230; <a href="http://www.ideologics.co.uk/blogging/eye-on-silicon-becomes-ideologics">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been getting back in to blogging. Part of blogging, that I&#8217;m sure is as true for newbies as it is for the experienced bloggers, is research. Researching how to best mesh your blog in with the blogosphere.</p>
<p>While I like the name Eye On Silicon, there are several downsides to it. One is the negative word Eye &#8211; sometimes AdSense assumes this is a keyword and posts advertisements offering contact lenses which is definitely off topic. Back in the days of web desing, I registered a domain called Ideologics, both .co.uk and .com.</p>
<p>The name Ideologics doesn&#8217;t bring forth any imaginative advertisements, it&#8217;s about as neutral as one can get. It&#8217;s also much older than the Eye On Silicon domain &#8211; by approximately 6 years &#8211; and will likely help with SEO. That&#8217;s a theory that will be put to the test as I keep an eye on my statistics.</p>
<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/eye-on-silicon-becomes-ideologics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why do you blog?</title>
		<link>http://www.ideologics.co.uk/blogging/why-do-you-blog</link>
		<comments>http://www.ideologics.co.uk/blogging/why-do-you-blog#comments</comments>
		<pubDate>Wed, 15 Apr 2009 03:14:58 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=654</guid>
		<description><![CDATA[To have a reason is to have a purpose. Why do you blog? I started Eye On Silicon as a small tech blog on my Ideologics website early 2008. I decided that it needed its own home, and promptly bought &#8230; <a href="http://www.ideologics.co.uk/blogging/why-do-you-blog">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To have a reason is to have a purpose. Why do you blog?</p>
<p>I started Eye On Silicon as a small tech blog on my Ideologics website early 2008. I decided that it needed its own home, and promptly bought eyeonsilicon.com. Shortly afterwards I bought the .co.uk domain so I could invade the UK search engine.</p>
<p><span id="more-654"></span></p>
<p>After reading blogs for weeks on end about bloggers becoming rich from their writing, I thought I could do the same. Unlike some, I didn&#8217;t enter the blogosphere with high hopes of thousands of dollars every month &#8211; I openly accepted that it would take many many months before I saw a cent. Starting with such low expectations has helped me dedicate myself.</p>
<p>I blog for many reasons:</p>
<ul>
<li>Blogging is an outlet that allows me to run my thoughts and practice my trade.</li>
<li>I have more than £20,000 worth of debt &#8211; I want to pay it off.</li>
<li>Blogging has a sort of &#8216;exciting new&#8217; feel to it. In some ways, it&#8217;s like pioneering.</li>
<li>I want a passive income that will allow me to achieve other goals in my life &#8211; such as exploring the the US from the south to the north.</li>
</ul>
<p>I discipline myself, and spend at least an hour a day writing. I make goals and try to attain them.</p>
<p>Why do you blog?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/why-do-you-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase your AdSense CTR by Removing Options</title>
		<link>http://www.ideologics.co.uk/blogging/increase-your-adsense-ctr-by-removing-options</link>
		<comments>http://www.ideologics.co.uk/blogging/increase-your-adsense-ctr-by-removing-options#comments</comments>
		<pubDate>Tue, 14 Apr 2009 02:54:19 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google AdSense]]></category>
		<category><![CDATA[Making Money Online]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=649</guid>
		<description><![CDATA[Statistics say that returning visitors rarely click ads, but visitors from search engines love to click them. How can we use this knowledge to our advantage? Remove hyperlinks If you remove hyperlinks, you remove options. By removing options, you put &#8230; <a href="http://www.ideologics.co.uk/blogging/increase-your-adsense-ctr-by-removing-options">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Statistics say that returning visitors rarely click ads, but visitors from search engines love to click them. How can we use this knowledge to our advantage?</p>
<p><span id="more-649"></span></p>
<h3>Remove hyperlinks</h3>
<p>If you remove hyperlinks, you remove options. By removing options, you put more focus on the ads. When search traffic arrives at your blog, they&#8217;re looking for something &#8211; an advertisement can be a valuable resource, for the split second they spend scanning, making that advertisement one of very few options increases the chance of a click significantly.</p>
<h3>Don&#8217;t use text link services such as Infolinks</h3>
<p>Services such as Infolinks browse the page and underline keywords. When the cursor is moved over a keyword, a small pop-up appears with an advertisement. There can be as many as 20 of these on a page &#8211; if you&#8217;re not earning much from the clicks, remove the links to earn more from AdSense.</p>
<h3>Space out your layout</h3>
<p>By spacing out your layout, you push options further apart. Things stand out more, and less appears &#8216;above the fold&#8217;. You can manipulate this so that the few options appearing above the fold include Google AdSense.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/increase-your-adsense-ctr-by-removing-options/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostLove Feature: Popular posts by category</title>
		<link>http://www.ideologics.co.uk/blogging/postlove-feature-popular-posts-by-category</link>
		<comments>http://www.ideologics.co.uk/blogging/postlove-feature-popular-posts-by-category#comments</comments>
		<pubDate>Fri, 10 Apr 2009 14:56:12 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=646</guid>
		<description><![CDATA[Following the previous Editor&#8217;s Choice post regarding the correct use of categories in WordPress, I&#8217;ve made some small changes to PostLove. Here&#8217;s a rundown: When you&#8217;re reading a post, the PostLove widget will display the most popular posts from the &#8230; <a href="http://www.ideologics.co.uk/blogging/postlove-feature-popular-posts-by-category">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Following the previous <a href="http://www.ideologics.co.uk/topics/editors-choice/">Editor&#8217;s Choice</a> post regarding the <a href="http://www.ideologics.co.uk/blogging/how-to-use-categories-to-your-advantage/">correct use of categories in WordPress</a>, I&#8217;ve made some small changes to <a href="http://www.ideologics.co.uk/postlove/">PostLove</a>.</p>
<p>Here&#8217;s a rundown:</p>
<ul>
<li>When you&#8217;re reading a post, the PostLove widget will display the most popular posts from the categories specified in that post.</li>
<li>When you&#8217;re browsing a category&#8217;s index, the PostLove widget will display that category&#8217;s most popular posts.</li>
</ul>
<p>It&#8217;ll be interesting to see how this serves my traffic.</p>
<p>The changes haven&#8217;t been published yet as I&#8217;m still testing them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/postlove-feature-popular-posts-by-category/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use WordPress categories to your advantage</title>
		<link>http://www.ideologics.co.uk/blogging/how-to-use-categories-to-your-advantage</link>
		<comments>http://www.ideologics.co.uk/blogging/how-to-use-categories-to-your-advantage#comments</comments>
		<pubDate>Fri, 10 Apr 2009 13:33:43 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Editor's Choice]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=642</guid>
		<description><![CDATA[As part of an effort to provide daily content, I&#8217;ve decided to start linking to posts that I consider great value to those who blog. I&#8217;ll be categorising these posts under one of the five head categories &#8211; but also &#8230; <a href="http://www.ideologics.co.uk/blogging/how-to-use-categories-to-your-advantage">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As part of an effort to provide daily content, I&#8217;ve decided to start linking to posts that I consider great value to those who blog. I&#8217;ll be categorising these posts under one of the five head categories &#8211; but also inside a new category called Editor&#8217;s Choice.</p>
<p>Ironically, the first post in this category is all about categories.</p>
<p><span id="more-642"></span></p>
<p>Excerpt:</p>
<blockquote><p><span class="drop_cap">B</span>ecause of the way they are <em>mis</em>used all over the Web, categories have grown to become something that we regard in a purely user-centric light. We think of them as navigational tools and guides for users, but in reality, <strong>categories are a powerful tool that bloggers can use to exercise precise control over content in a dynamic environment</strong>.</p>
<p>Unfortunately, the true power of categorized content has been masked by the <em>one size fits all</em> implementation you see everywhere on the Web—the proverbial long, ugly list of category links now appearing on a blog near you.</p>
<p>As luck would have it, that awful category list also turns out to be a very poor presentational strategy for your site… But why?</p></blockquote>
<p>Read <a href="http://www.pearsonified.com/2008/02/what_every_blogger_needs_to_know_about_categories.php">What Every Blogger Needs To Know About Categories</a> at Pearsonified.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/how-to-use-categories-to-your-advantage/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Invaluable WordPress Plugins</title>
		<link>http://www.ideologics.co.uk/blogging/5-invaluable-wordpress-plugins</link>
		<comments>http://www.ideologics.co.uk/blogging/5-invaluable-wordpress-plugins#comments</comments>
		<pubDate>Thu, 09 Apr 2009 17:31:52 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=640</guid>
		<description><![CDATA[Word Press is incredibly versatile &#8211; and I think it&#8217;s safe to say that plug-ins help achieve that versatility. As a tribute to those coders that help make my blog more versatile, I&#8217;m listing five Word Press plug-ins that I &#8230; <a href="http://www.ideologics.co.uk/blogging/5-invaluable-wordpress-plugins">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Word Press is incredibly versatile &#8211; and I think it&#8217;s safe to say that plug-ins help achieve that versatility. As a tribute to those coders that help make my blog more versatile, I&#8217;m listing five Word Press plug-ins that I consider invaluable. They won&#8217;t be deactivated until something better comes along!</p>
<p><span id="more-640"></span></p>
<p style="padding-left: 30px; "><a href="http://wordpress.org/extend/plugins/php-code-widget/">Executable PHP Widget<br />
</a>Like the Text widget, Executable PHP Widget allows you to enter custom text to the sidebar using a widget. However, what the Text widget lacks is what the Executable PHP Widget makes up for &#8211; PHP capability. With this plug-in you can use PHP without editing your source files.</p>
<p style="padding-left: 30px; "><a href="http://philhord.com/wp-hacks/adsense">AdSense<br />
</a>A simple but extremely helpful plug-in if you want to insert AdSense in the middle of your posts. Using an &lt;!&#8211;adsense&#8211;&gt; tag, you can place your advertisement wherever you see fit.</p>
<p style="padding-left: 30px; "><a href="http://sharethis.com/">ShareThis<br />
</a>At the end of every post should be an option for the reader to publicise the post further. ShareThis gives the reader a wealth of options &#8211; including emailing the post to a friend.</p>
<p style="padding-left: 30px; "><a href="http://omninoggin.com/projects/wordpress-plugins/wp-greet-box-wordpress-plugin/">WP Greet Box<br />
</a>If someone arrives via a search engine, or DIGG, greeting them could make them a subscriber. WP Greet Box does just that &#8211; it welcomes new readers to your site, and asks them to consider subscribing. All the messages are customisable depending on where readers arrive from.</p>
<p style="padding-left: 30px; "><a href="http://www.viper007bond.com/wordpress-plugins/clean-archives-reloaded/">Clean Archives Reloaded<br />
</a>The calendar isn&#8217;t all that helpful. A page full of every post on your site sorted chronologically is. Clean Archives Reloaded helps you achieve that. (Look at out Archives page for an example)</p>
<p>BONUS: Don&#8217;t forget our own plug-in, <a href="http://www.ideologics.co.uk/postlove/">PostLove</a>, that displays your most popular posts for your visitors to read.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/5-invaluable-wordpress-plugins/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Strategic ad positions for Google AdSense</title>
		<link>http://www.ideologics.co.uk/blogging/strategic-ad-positions-for-google-adsense</link>
		<comments>http://www.ideologics.co.uk/blogging/strategic-ad-positions-for-google-adsense#comments</comments>
		<pubDate>Wed, 08 Apr 2009 13:47:34 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google AdSense]]></category>
		<category><![CDATA[Making Money Online]]></category>

		<guid isPermaLink="false">http://www.eyeonsilicon.co.uk/?p=626</guid>
		<description><![CDATA[If a visitor to your blog doesn&#8217;t see something &#8211; will they click it? No! If you&#8217;re monetising your blog by selling advertising space, make sure the space is visible &#8211; it gives value to your visitors, and value to &#8230; <a href="http://www.ideologics.co.uk/blogging/strategic-ad-positions-for-google-adsense">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If a visitor to your blog doesn&#8217;t see something &#8211; will they click it? No! If you&#8217;re monetising your blog by selling advertising space, make sure the space is visible &#8211; it gives value to your visitors, and value to the advertisers bidding for space on your site.</p>
<p>Scared that people won&#8217;t click the ads if you put them in a visible spot? Don&#8217;t be. Here&#8217;s some myths I&#8217;d like to dispel:</p>
<p><span id="more-626"></span></p>
<ol>
<li>&#8220;PEOPLE WON&#8217;T CLICK MY ADS BECAUSE THEY KNOW IT EARNS ME MONEY!&#8221;<br />
Ok, perhaps this one is true for some really stubborn asses out there. But for the majority of the internet population, clicking an ad has nothing to do with you &#8211; it is all about what they want. If there was an ad with &#8216;CLAIM YOUR $1000 HERE&#8217;, chances are people would click it out of curiousity. On the same principal but with less extremity, if an advertisement has what the reader wants &#8211; the reader might click.</li>
<li>&#8220;ADVERTISEMENTS MAKE MY BLOG LOOK UGLY!&#8221;<br />
Yes, they do &#8211; if you&#8217;re entering your blog as an art piece. Otherwise, they are a part of life that people generally accept. If people really don&#8217;t want to see them, there are tools they can use to block them.</li>
<li>&#8220;THE ONLY WAY TO GET CLICKS ON ADS IS TO MAKE MY CONTENT USELESS!&#8221;<br />
Yes, it&#8217;ll get you clicks. But no, it&#8217;s not the only way. Advertisement should compliment your content, they shouldn&#8217;t be your content.</li>
</ol>
<p>With that said and done, positioning your advertisements strategically is easy. Here&#8217;s a list of good positions for ads:</p>
<ol>
<li>At the very top of the page, right beneath the browser&#8217;s toolbars. If a visitor plans on leaving your site, there&#8217;s a good chance they&#8217;ll come across the ad as a last glance.</li>
<li>Placing a floating square advertisement inside your content is widely accepted as a good earner. When people start reading, the advertisement is visible as they scroll down the page and is in the perfect location in regards to what they&#8217;re focusing on &#8211; your content!</li>
<li>An advertisement at the very end of your post gives the reader an opportunity to click while deciding what they&#8217;re going to do next.</li>
<li>A skyscraper on the side menu is visible as a reader scrolls your content.</li>
<li>A link unit above your content, but below the header works well.</li>
<li>Try to place link units wherever the reader&#8217;s focus will go.</li>
</ol>
<p>Following on from point 6: <a href="http://www.poynterextra.org/eyetrack2004/">Eyetrack III</a>. See what readers see when they look at your blog. Understanding a reader&#8217;s movements can help you catch them at the right time.</p>
<p>Tune in tomorrow for some more tips.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideologics.co.uk/blogging/strategic-ad-positions-for-google-adsense/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

