<?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>AlastairMcDermott.com</title>
	<atom:link href="http://www.alastairmcdermott.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.alastairmcdermott.com</link>
	<description>Compilation of Alastair's multiple blogs</description>
	<lastBuildDate>Mon, 26 Jul 2010 10:16:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Add Edit Link To WordPress Posts and Pages</title>
		<link>http://www.alastairmcdermott.com/add-edit-link-to-wordpress-posts-and-pages</link>
		<comments>http://www.alastairmcdermott.com/add-edit-link-to-wordpress-posts-and-pages#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:16:06 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=662</guid>
		<description><![CDATA[This is a WordPress Quick Tip: How to add an &#8220;Edit this page&#8221; link to your WordPress posts and pages that will only be displayed if you are logged in. First, find the location where you want to display the link. A good place to put it is either just before, or just after the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a WordPress Quick Tip: <strong>How to add an &#8220;Edit this page&#8221; link to your WordPress posts and pages that will only be displayed if you are logged in.</strong></p>
<p>First, find the location where you want to display the link. A good place to put it is either just before, or just after the main content of the page.<br />
<span id="more-662"></span><br />
I look for the following code in the <strong>/wp-content/YourThemeName/page.php</strong> (or <strong>single.php</strong>) file:</p>
<p><code>&lt;?php the_content(); ?&gt;</code></p>
<p>and place the following code just after it:</p>
<p><code>&lt;?php edit_post_link('[edit this page]', '&lt;p&gt;', '&lt;/p&gt;'); ?&gt;</code></p>
<p>That displays <a href="http://www.logon.ie/blog/wordpress-add-edit-link">[edit this page]</a> in it&#8217;s own paragraph so it shouldn&#8217;t mess up your page formatting on you! Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/add-edit-link-to-wordpress-posts-and-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add Custom Menu Support To WordPress Theme</title>
		<link>http://www.alastairmcdermott.com/how-to-add-custom-menu-support-to-wordpress-theme</link>
		<comments>http://www.alastairmcdermott.com/how-to-add-custom-menu-support-to-wordpress-theme#comments</comments>
		<pubDate>Sun, 25 Jul 2010 18:07:13 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=637</guid>
		<description><![CDATA[This is a quick blog tip on how to add support for the new custom menus in WordPress 3 into a theme that doesn&#8217;t already support them. First, we need to enable support within the theme. To do that, open the /wp-content/themes/YourThemeName/functions.php file and add this line of code to the bottom (before the closing [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick blog tip on how to add support for the new custom menus in WordPress 3 into a theme that doesn&#8217;t already support them.</p>
<p>First, we need to enable support within the theme. To do that, open the <strong>/wp-content/themes/YourThemeName/functions.php</strong> file and add this line of code to the bottom (before the closing &#8220;?&gt;&#8221;):</p>
<p><code>add_theme_support( 'menus' );</code></p>
<p>Now the theme knows it can support custom menus. Next we need to tell the theme where it can put them &#8211; we do this by placing calls to the <strong>wp_nav_menu() function where we want the menus to appear</strong>.<span id="more-637"></span></p>
<p>Usual locations for menus are in the header near the top of the page, in a sidebar, and in the page footer. What I normally do for smaller sites is put a limited menu in the banner, which only contains the main pages of the site and doesn&#8217;t change when new pages are added. Then for the sidebar I add a full list of all pages, which grows as pages are added. Depending on the site, sometimes you want to show child pages, on others parent pages only.</p>
<p>Let&#8217;s get to the code already! Here&#8217;s a typical menu. Note the<strong> &#8216;menu&#8217; =&gt; &#8216;menu-sidebar&#8217;</strong> code is what identifies the menu by name within the WordPress 3 menu system, and the <strong>&#8216;container_class&#8217; =&gt; &#8216;menu-sidebar&#8217;</strong> bit is what creates the<strong> class=&#8221;menu-sidebar&#8221;</strong> bit so you can style each menu invidually within CSS.</p>
<p><code><br />
&lt;!--sidebar.php--&gt;<br />
&lt;h2&gt;Site Navigation&lt;/h2&gt;<br />
&lt;?php wp_nav_menu( array( 'sort_column' =&gt; 'menu_order', 'container_class' =&gt; 'menu-sidebar', 'menu' =&gt; 'menu-sidebar') ); ?&gt;<br />
</code></p>
<p>And here&#8217;s a header menu &#8211; I&#8217;ve left in the h1 header for context, but the  <strong>wp_nav_menu()</strong> is the relevant bit for us.</p>
<p><code><br />
&lt;div id="header"&gt;<br />
&lt;h1&gt;&lt;a href="&lt;?php echo get_settings('home'); ?&gt;/"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;<br />
&lt;h2&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/h2&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div id="menudiv"&gt;<br />
&lt;?php wp_nav_menu( array( 'sort_column' =&gt; 'menu_order', 'container_class' =&gt; 'menu-header', 'menu' =&gt; 'menu-header' ) ); ?&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>That&#8217;s it &#8211; adding custom menu support to your WordPress theme is pretty easy, eh? Your suggestions or questions are very welcome in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/how-to-add-custom-menu-support-to-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Test Syndication Feature</title>
		<link>http://www.alastairmcdermott.com/test-syndication-feature</link>
		<comments>http://www.alastairmcdermott.com/test-syndication-feature#comments</comments>
		<pubDate>Wed, 21 Jul 2010 22:10:19 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=631</guid>
		<description><![CDATA[This post is to test the syndication feature over on my personal website at AlastairMcDermott.com. I&#8217;ve set it up to syndicate posts from all of the different blogs that I write, so that I can continue to keep each in it&#8217;s own location, but have an up to date personal site. I&#8217;ll write up a [...]]]></description>
			<content:encoded><![CDATA[<p>This post is to test the syndication feature over on my personal website at <a href="http://www.alastairmcdermott.com">AlastairMcDermott.com</a>. I&#8217;ve set it up to syndicate posts from all of the different blogs that I write, so that I can continue to keep each in it&#8217;s own location, but have an up to date personal site.</p>
<p>I&#8217;ll write up a post sometime detailing how the whole thing works, I think it&#8217;s pretty cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/test-syndication-feature/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basics of Custom Fields In WordPress</title>
		<link>http://www.alastairmcdermott.com/basics-of-custom-fields-in-wordpress</link>
		<comments>http://www.alastairmcdermott.com/basics-of-custom-fields-in-wordpress#comments</comments>
		<pubDate>Mon, 14 Jun 2010 18:07:15 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=583</guid>
		<description><![CDATA[I was recently asked about using custom fields in WordPress and I thought it was worthy of a quick blog post. I&#8217;ve seen custom fields used for many different things from review ratings (e.g &#8220;3/5 stars&#8220;) to mood messages (&#8220;Today I feel like listening to  loud metal and shouting at my housemates&#8220;), etc. For this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="margin: 9px;" src="http://farm3.static.flickr.com/2660/3715569167_7e978e8319.jpg" alt="Beautiful Field - by flickr's KevinLallier " width="320" height="213" /></p>
<p>I was recently asked about using custom fields in WordPress and I thought it was worthy of a quick blog post. I&#8217;ve seen custom fields used for many different things from review ratings (e.g &#8220;<em>3/5 stars</em>&#8220;) to mood messages (&#8220;<em>Today I feel like listening to  loud metal and shouting at my housemates</em>&#8220;), etc. For this example, let&#8217;s use a very simple real case we recently dealt with.</p>
<p>We wanted to have an image appear at the top of the WordPress Page or Post, under the headline but above the text. We wanted the image to be shown whenever we supplied one. Here&#8217;s how we implemented it.<span id="more-583"></span></p>
<p>First off, we want to put it after the header, but before the title. We did a &#8220;View Source&#8221; on one of the pages and saw code that looked like this for the headline and content:</p>
<pre id="line137">&lt;div class="content"&gt;
&lt;h2 class="title"&gt;Case Studies&lt;/h2&gt;
&lt;p&gt;What follows are real life examples of recent work we carried our. We have chosen 3 examples representing vastly different business verticals and company age. If you would like to ask us more about these please contact us.&lt;/p&gt;
&lt;p&gt;&lt;a class="post-edit-link" href="http://www.oursite.tld/wp-admin/post.php?post=476&amp;amp;action=edit" title="Edit Page"&gt;Edit this entry.&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</pre>
<p>So we now roughly what the code that we want to find in the theme looks like. We found it in the page.php file (www.oursite.tld/wp-content/themes/our-theme-name/page.php). Here&#8217;s what it looked like:</p>
<pre>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;?php the_content('&lt;p&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;'); ?&gt;
&lt;?php wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;
&lt;?php endwhile; endif; ?&gt;
&lt;?php edit_post_link('Edit this entry.', '&lt;p&gt;', '&lt;/p&gt;'); ?&gt;</pre>
<p>Now we&#8217;re getting places &#8211; we want to add our custom image after the &lt;h2&gt;&#8221;the_title()&#8221;&lt;/h2&gt; header, and before the call to &#8220;the_content()&#8221;. Let&#8217;s build the code we want to add.</p>
<p>First of all, we&#8217;ve decided to call our custom field &#8220;&#8216;custom-post-image&#8221; to reflect its usage. We need to check the custom fields array to find out if that exists using the <a href="http://codex.wordpress.org/Function_Reference/get_post_meta">get_post_meta()</a> function like so:</p>
<pre>$themeta = get_post_meta($post-&gt;ID, $customfieldkey, TRUE);</pre>
<p>Now all we want to do is check if it&#8217;s empty (or rather, if it&#8217;s not):</p>
<pre>if($themeta != '') {}</pre>
<p>And finally, if it&#8217;s not empty, build the &lt;img&gt; tag based on the custom field contents:</p>
<pre>echo '&lt;img class= "custom-post-image" src="';
echo $themeta;
echo'" /&gt;  ';</pre>
<p>Here&#8217;s the complete code &#8211; rather simple really!</p>
<pre>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;?php
/*     check if custom-post-image custom field exists,
if it does, display an image, if not, do nothing */
$customfieldkey = 'custom-post-image';
$themeta = get_post_meta($post-&gt;ID, $customfieldkey, TRUE);
if($themeta != '') {
echo '&lt;img class= "custom-post-image" src="';
echo $themeta;
echo'" /&gt;  ';
}
?&gt;
&lt;?php the_content('&lt;p&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;'); ?&gt;</pre>
<p style="text-align: left;">That&#8217;s the code all done! Now all we need to do is add the custom field, and populate it. That&#8217;s very easy to do also. From under the edit box in your Write Page scroll down to the Custom Fields box. Click on &#8220;Enter new&#8221; (highlighted below):<br />
<img class="aligncenter" title="Add WordPress Custom Field " src="http://www.logon.ie/images/wordpress-custom-field0.png" alt="Add a WordPress Custom Field " width="682" height="277" /><br />
Now add your custom field using the same name that you used in your code &#8211; above we used &#8220;custom-post-image&#8221;. Select it from the drop-down, then fill in a value for the image location &#8211; e.g. &#8220;/images/our-example-image.png&#8221;:</p>
<p><img class="aligncenter" style="margin: 9px;" title="Add WordPress Custom Field Value" src="http://www.logon.ie/images/wordpress-custom-field1.png" alt="Add a WordPress Custom Field value" width="716" height="264" /></p>
<p style="text-align: left;">You&#8217;re done:<br />
<img class="aligncenter" style="margin: 4px; border: 1px solid grey;" src="http://www.logon.ie/images/AboutLogOn_1276543285275.png" alt="" width="600" height="211" /><br />
Enjoy playing with WordPress custom fields!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/basics-of-custom-fields-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deep Tissue Massage For Rugby Injuries</title>
		<link>http://www.alastairmcdermott.com/deep-tissue-massage</link>
		<comments>http://www.alastairmcdermott.com/deep-tissue-massage#comments</comments>
		<pubDate>Mon, 07 Jun 2010 20:56:24 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://sportcrazy.net/?p=323</guid>
		<description><![CDATA[I&#8217;ve played rugby in the front row since the age of 12, and I&#8217;ve had my share of neck and back injuries &#8211; thankfully nothing very serious, but enough to keep me off the pitch for 6-12 months sometimes. In the past 3-4 years I&#8217;ve been seeing a chiropractor regularly, and I think he&#8217;s been [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve played rugby in the front row since the age of 12, and I&#8217;ve had my share of neck and back injuries &#8211; thankfully nothing very serious, but enough to keep me off the pitch for 6-12 months sometimes. In the past 3-4 years I&#8217;ve been seeing a chiropractor regularly, and I think he&#8217;s been good for me in a preventative manner (although he&#8217;s horrified that I still play rugby), but recently when I had an issue to resolve it didn&#8217;t work out so well and I reckoned I needed to look elsewhere.</p>
<p>A while back I built a website for Dene Hickey, a &#8220;qualified neuromuscular therapist&#8221;. I hadn&#8217;t a clue what &#8221; neuromuscular therapy&#8221; meant at the time, but it sounded impressive. I recently met Dene about another website for his growing sports massage business.</p>
<p>When I not so subtly mentioned the acute back pain I was suffering Dene immediately offered me a free deep tissue massage where he would &#8220;de-activate&#8221; the trigger points.  I&#8217;ve had sports massages before and I&#8217;ve noticed that the masseuse or masseur rarely goes hard enough on the troublesome muscles. No such trouble with Dene, he&#8217;s a strong guy who works on amateur and semi-pro rugby players regularly, but as well as just going in strong, he really found the pain points and sorted them out.</p>
<p>As he was working on the muscles, one of the interesting things for me was learning a bit about Trigger Points. I won&#8217;t try to explain it here &#8211; click through the link to <a href="http://en.wikipedia.org/wiki/Trigger_point">Wikipedia</a> or Dene&#8217;s <a href="http://www.denehickey.com/trig.html">trigger points therapy</a> page.</p>
<p>I felt an order of magnitude times better after the session, the acute back pain was greatly diminished almost to non-existance. If you&#8217;re suffering from chronic muscular spasm or pain, from sports or even from office chairs, then I highly recommend you find a massage clinic specialising in deep tissue massage and trigger point therapy. If you&#8217;re in the Dublin area, I don&#8217;t think you could do much better than to give Dene a call.</p>
<ul>
<li><a href="http://www.deeptissuemassage.ie">Deep Tissue Massage</a></li>
<li><a href="http://www.denehickey.com">Dene Hickey</a></li>
</ul>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/deep-tissue-massage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress v3 Changes</title>
		<link>http://www.alastairmcdermott.com/wordpress-v3-changes</link>
		<comments>http://www.alastairmcdermott.com/wordpress-v3-changes#comments</comments>
		<pubDate>Fri, 04 Jun 2010 04:13:38 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=503</guid>
		<description><![CDATA[I&#8217;ve been using the WordPress v3 beta (nightly build) for a few weeks now, here are some thoughts on the new and improved features&#8230;
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using the WordPress v3 beta (nightly build) for a few weeks now, here are some thoughts on the new and improved features&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/wordpress-v3-changes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Code Snippets</title>
		<link>http://www.alastairmcdermott.com/wordpress-code-snippets</link>
		<comments>http://www.alastairmcdermott.com/wordpress-code-snippets#comments</comments>
		<pubDate>Thu, 03 Jun 2010 20:35:33 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.logon.ie/?p=447</guid>
		<description><![CDATA[We&#8217;re planning to have WordPress Code Snippets for some simple but incredibly useful functions here on the blog. Stay tuned. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id mi risus. In hac habitasse platea dictumst. Praesent molestie, nibh eu vulputate mattis, libero eros bibendum velit, et congue massa quam id odio. Donec eros [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re planning to have WordPress Code Snippets for some simple but incredibly useful functions here on the blog.</p>
<p>Stay tuned.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id mi  risus. In hac habitasse platea dictumst. Praesent molestie, nibh eu  vulputate mattis, libero eros bibendum velit, et congue massa quam id  odio. Donec eros mi, auctor nec porta non, venenatis sodales elit.  Aliquam tellus nisl, sagittis vel bibendum in, mattis in arcu. <span id="more-447"></span> Pellentesque cursus, enim et laoreet pharetra, turpis quam vulputate  diam, a ornare dolor lacus vitae nulla. In hac habitasse platea  dictumst. Aenean in tellus ipsum, in vulputate tortor. Aliquam  condimentum libero vel orci aliquet lobortis. Maecenas commodo diam at  ipsum pellentesque dignissim convallis lacus faucibus. Suspendisse  hendrerit placerat dolor at iaculis. Aenean vitae odio odio. Phasellus  viverra, magna vitae porta pellentesque, sapien purus tristique enim,  quis aliquam nisl nisl a neque. Mauris laoreet orci at erat pretium  sodales. Proin mi diam, tempus et dictum et, ultrices a lorem. Nullam  pharetra, nunc nec eleifend suscipit, tellus urna pulvinar dolor,  commodo placerat nibh tellus eu magna. Praesent dapibus pretium  ullamcorper. Duis nec bibendum purus. Cum sociis natoque penatibus et  magnis dis parturient montes, nascetur ridiculus mus. Maecenas et metus a  magna ullamcorper mollis et congue tortor.</p>
<p>Aenean sed ipsum tortor. Mauris interdum vestibulum neque dictum  scelerisque. In volutpat, enim vel pharetra vestibulum, metus eros  porttitor felis, quis euismod nisl erat vel lorem. Aliquam nec sapien  sodales orci dapibus feugiat eget at magna. Mauris id libero turpis, sed  facilisis odio. Cras gravida purus in mauris placerat interdum. Fusce  quis rhoncus ligula. Integer lacinia sagittis quam varius posuere. Nam a  sapien sed quam sodales posuere. Cras egestas blandit enim, et  ultricies ipsum aliquet in.</p>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada  fames ac turpis egestas. Maecenas auctor est at dolor ornare quis congue  libero mollis. Phasellus posuere dictum augue, sed tempor nisi  elementum sit amet. Fusce auctor urna sed odio iaculis ac malesuada mi  ultricies. Pellentesque habitant morbi tristique senectus et netus et  malesuada fames ac turpis egestas. Ut commodo justo posuere diam  eleifend scelerisque. Fusce dictum consequat consequat. Fusce nisl nisl,  aliquet nec vestibulum sit amet, convallis vel risus. Nulla ultricies  luctus nisi quis pretium. Cras vel dolor orci, id feugiat neque. Lorem  ipsum dolor sit amet, consectetur adipiscing elit. Nulla sed velit nisl.  Vivamus magna neque, blandit nec ultricies pretium, ultricies quis  nunc. Quisque sit amet diam urna. Sed tempor pharetra mauris id  imperdiet. Cras gravida, eros non sagittis ullamcorper, nibh neque  lobortis mauris, sit amet lacinia magna tellus sit amet purus.</p>
<p>Proin bibendum, dolor vel vestibulum sagittis, purus magna laoreet sem,  eu mollis est nisl sed nunc. Nunc eu erat vitae sapien laoreet semper.  Duis at tortor odio. Donec eleifend lobortis nisi, vitae molestie tortor  feugiat et. Nullam risus odio, ornare nec interdum ac, luctus eget  tellus. Cras mattis est et lorem elementum quis pulvinar lacus  consectetur. Vivamus tempor pretium orci id consectetur. Vivamus dictum  interdum ante, a eleifend tellus eleifend ut. Suspendisse est mauris,  mollis ac tempus quis, malesuada in libero. Curabitur posuere lacus eu  nisl sagittis fermentum quis vitae justo. Aenean ultrices elementum  odio, sed porta mauris placerat hendrerit. Lorem ipsum dolor sit amet,  consectetur adipiscing elit. Proin et mi tortor, id blandit massa. Donec  posuere posuere sem, sit amet rutrum ipsum pulvinar ut. Nulla  hendrerit, nulla vitae ullamcorper iaculis, nibh turpis malesuada  turpis, quis dictum sapien velit in metus. Aenean eu nisi non dui  sodales vehicula. Aliquam erat volutpat. Vestibulum ante ipsum primis in  faucibus orci luctus et ultrices posuere cubilia Curae; Mauris vehicula  dui orci.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/wordpress-code-snippets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mayo Open Coffee Report March 2010</title>
		<link>http://www.alastairmcdermott.com/mayo-open-coffee-report-march-2010</link>
		<comments>http://www.alastairmcdermott.com/mayo-open-coffee-report-march-2010#comments</comments>
		<pubDate>Fri, 05 Mar 2010 17:45:07 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.websitedoctor.com/?p=833</guid>
		<description><![CDATA[On Wednesday I had the pleasure of attending the Mayo Open Coffee Club in my alma mater, GMIT, in Castlebar. It was an interesting experience and deserving of a write up in my all too infrequent blog :)

Pearce Flannery
I arrived a couple of minutes la...]]></description>
			<content:encoded><![CDATA[On Wednesday I had the pleasure of attending the Mayo Open Coffee Club in my alma mater, GMIT, in Castlebar. It was an interesting experience and deserving of a write up in my all too infrequent blog :)

Pearce Flannery
I arrived a couple of minutes late, so I dont know how the event kicked off, but [...]<br/>
<br/>
[This is a summary of an article from the WebsiteDoctor blog. To view the full article or leave a comment, please click on the post title]<img src="http://feeds.feedburner.com/~r/websitedoctor/partial/~4/rMo4ViJzJI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/mayo-open-coffee-report-march-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordcamp Ireland Plugins Talk</title>
		<link>http://www.alastairmcdermott.com/wordcamp-ireland-plugins-talk</link>
		<comments>http://www.alastairmcdermott.com/wordcamp-ireland-plugins-talk#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:05:26 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.websitedoctor.com/?p=827</guid>
		<description><![CDATA[Hello Wordcamp Ireland attendees!
The Wordcamp organisers have asked me to speak on the topic of plugins &#8211; the suggested title is &#8220;10 Must Have Wordpress Plugins&#8221;, and it&#8217;s in the &#8220;Bloggers&#8221; track.
My plan is to look at some great plugins, and list some particularly valuable ones, and also to touch on some fantastic alternatives like [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://feedproxy.google.com/images/WordCampIreland-logo2.png" alt="Wordcamp Ireland" width="570" height="104" /></p>
<p>Hello Wordcamp Ireland attendees!</p>
<p>The Wordcamp organisers have asked me to speak on the topic of plugins &#8211; <a href="http://www.wordcampireland.com/schedule/">the suggested title is &#8220;10 Must Have Wordpress Plugins&#8221;, and it&#8217;s in the &#8220;Bloggers&#8221; track</a>.</p>
<p>My plan is to look at some great plugins, and list some particularly valuable ones, and also to touch on some fantastic alternatives like using themes with built-in features, and if we have enough geeks in the audience, <em>maybe</em> take a quick look at coding some of the simpler plugin functionality yourself.</p>
<p>I would like the talk to be useful and interesting for you guys, so what I&#8217;d like to find out is if you have any particular topics you&#8217;d like to cover, and if you would like me to show you some basic PHP code, or keep it at a higher non-technical level.</p>
<p><strong>Please leave a comment below or tweet a message including the hashtag #amdtalk</strong></p>
<p>I&#8217;ll also be watching that hashtag during the talk and will take any questions or comments from there (as well as any asked in person, of course)!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?a=vvvoqEXJsTc:KX-EV3Tk7Hk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?i=vvvoqEXJsTc:KX-EV3Tk7Hk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?a=vvvoqEXJsTc:KX-EV3Tk7Hk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?i=vvvoqEXJsTc:KX-EV3Tk7Hk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?a=vvvoqEXJsTc:KX-EV3Tk7Hk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?i=vvvoqEXJsTc:KX-EV3Tk7Hk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?a=vvvoqEXJsTc:KX-EV3Tk7Hk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/logon-internet-marketing-blog?d=yIl2AUoC8zA" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/wordcamp-ireland-plugins-talk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Because of Their Perseverance and Consistency</title>
		<link>http://www.alastairmcdermott.com/because-of-their-perseverance-and-consistency</link>
		<comments>http://www.alastairmcdermott.com/because-of-their-perseverance-and-consistency#comments</comments>
		<pubDate>Tue, 02 Mar 2010 22:42:59 +0000</pubDate>
		<dc:creator>Alastair</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://amdsoft.com/?p=314</guid>
		<description><![CDATA[These guys have been spamming my sports blog for nigh on 10 years now, with pretty much the exact same message year in, year out. (My thanks to Askimet for nuking 99.9% of their submissions.) I was bloody annoyed at first, but after a certain number of years, you have to admire certain spammers for [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>These guys have been spamming <a href="http://sportcrazy.net/">my sports blog</a> for nigh on 10 years now, with pretty much the exact same message year in, year out. (My thanks to Askimet for nuking 99.9% of their submissions.)</p>
<p>I was bloody annoyed at first, but after a certain number of years, you have to admire certain spammers for their consistency and bloody-minded perseverance. </p>
<p>In tribute, here is their spam in full:</p>
<blockquote><p>Dear Sir,</p>
<p>We introduce ourselves to you as an old, established and well-experienced manufacturers and exporters in Pakistan for the following range of Products. We have our own Tannery Unit and Production Unit and given such up-to-date manufacturing arrangements, our qualities are authentic, durable and fast-selling in an international market .</p>
<p>Please submit us any enquiries for the following items so that we may send you our Catalogue Pictures with best competitive export prices for your study and selection.</p>
<p>SUMMER MOTORBIKE GLOVES, MOTOCROSS GLOVES, CYCLING GLOVES, CROSS COUNTRY GLOVES, NEOPRENE GLOVES, FLEECE GLOVES AND LEATHER GARMENTS etc.</p>
<p>If you needs any thing, please feel free to contact us, we assure you that we will supply you the best quality products at extremely reasonable prices. Yours prompt reply would be highly appereciated.</p>
<p>Best Regards,</p>
<p>Maryam Ali<br />
(Export Manager)</p></blockquote>
<div id="submitted-on">Submitted on <a href="http://sportcrazy.net/cycling/review-cannondale-windfront-glove-winter-cycling-gloves/comment-page-1/#comment-89944">2010/02/26 at 6:32am</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.alastairmcdermott.com/because-of-their-perseverance-and-consistency/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
