<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Freelance Web Development | Douglas Radburn</title>
	<atom:link href="http://www.douglasradburn.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.douglasradburn.co.uk</link>
	<description>Just another weblog typed by a web monkey...</description>
	<lastBuildDate>Sat, 24 Sep 2011 14:33:42 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>Comment on How to get number of cart items in Magento by Douglas Radburn</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-number-of-cart-items-in-magento/comment-page-1/#comment-23994</link>
		<dc:creator>Douglas Radburn</dc:creator>
		<pubDate>Sat, 24 Sep 2011 14:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=601#comment-23994</guid>
		<description>Hi Chris,

You could try:

echo $this-&gt;helper(&#039;checkout/cart&#039;)-&gt;getSummaryCount();</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>You could try:</p>
<p>echo $this->helper(&#8216;checkout/cart&#8217;)->getSummaryCount();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get number of cart items in Magento by Chris</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-number-of-cart-items-in-magento/comment-page-1/#comment-23992</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 23 Sep 2011 17:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=601#comment-23992</guid>
		<description>Hello Douglas,

I tried to get the total number of items using the code above, but I noticed that it only count&#039;s the number of different items in your cart, but it doesn&#039;t take quantity into account. Is there a work around to this?

Thanks!
Chris</description>
		<content:encoded><![CDATA[<p>Hello Douglas,</p>
<p>I tried to get the total number of items using the code above, but I noticed that it only count&#8217;s the number of different items in your cart, but it doesn&#8217;t take quantity into account. Is there a work around to this?</p>
<p>Thanks!<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Open Graph Protocol in WordPress for Social Integration (Facebook) by Tweets that mention Using Open Graph Protocol in WordPress for Social Integration (Facebook) &#124; Freelance Web Development &#124; Douglas Radburn -- Topsy.com</title>
		<link>http://www.douglasradburn.co.uk/using-open-graph-protocol-in-wordpress-for-social-integration-facebook/comment-page-1/#comment-23900</link>
		<dc:creator>Tweets that mention Using Open Graph Protocol in WordPress for Social Integration (Facebook) &#124; Freelance Web Development &#124; Douglas Radburn -- Topsy.com</dc:creator>
		<pubDate>Tue, 15 Feb 2011 13:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=529#comment-23900</guid>
		<description>[...] This post was mentioned on Twitter by keanrichmond and Julian Kay, Douglas Radburn. Douglas Radburn said: New blog post, Using Open Graph Protocol in WordPress for Social Integration (Facebook) - http://tinyurl.com/6e4o8am [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by keanrichmond and Julian Kay, Douglas Radburn. Douglas Radburn said: New blog post, Using Open Graph Protocol in WordPress for Social Integration (Facebook) &#8211; <a href="http://tinyurl.com/6e4o8am" rel="nofollow">http://tinyurl.com/6e4o8am</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting a list of blog posts in WordPress by Douglas Radburn</title>
		<link>http://www.douglasradburn.co.uk/getting-a-list-of-blog-posts-in-wordpress/comment-page-1/#comment-23825</link>
		<dc:creator>Douglas Radburn</dc:creator>
		<pubDate>Thu, 13 Jan 2011 11:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=455#comment-23825</guid>
		<description>I&#039;d guess that this would display a whole post? 

I think you could replace:

$blogPosts = new WP_Query();
$blogPosts-&gt;query(‘showposts=6?);

with:

$blogPosts = get_posts(&#039;numberposts=6&#039;);</description>
		<content:encoded><![CDATA[<p>I&#8217;d guess that this would display a whole post? </p>
<p>I think you could replace:</p>
<p>$blogPosts = new WP_Query();<br />
$blogPosts->query(‘showposts=6?);</p>
<p>with:</p>
<p>$blogPosts = get_posts(&#8216;numberposts=6&#8242;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting a list of blog posts in WordPress by Kean</title>
		<link>http://www.douglasradburn.co.uk/getting-a-list-of-blog-posts-in-wordpress/comment-page-1/#comment-23824</link>
		<dc:creator>Kean</dc:creator>
		<pubDate>Thu, 13 Jan 2011 11:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=455#comment-23824</guid>
		<description>Nice post. I&#039;m not sure if there&#039;s much difference but I tend to use the following:

$blogPosts = new WP_Query();
$blogPosts-&gt;query(&#039;showposts=6&#039;);
while ($blogPosts-&gt;have_posts()) {
   $blogPosts-&gt;the_post();</description>
		<content:encoded><![CDATA[<p>Nice post. I&#8217;m not sure if there&#8217;s much difference but I tend to use the following:</p>
<p>$blogPosts = new WP_Query();<br />
$blogPosts-&gt;query(&#8216;showposts=6&#8242;);<br />
while ($blogPosts-&gt;have_posts()) {<br />
   $blogPosts-&gt;the_post();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a Twitter feed into your WordPress theme by Kean</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-a-twitter-feed-into-your-wordpress-theme/comment-page-1/#comment-23732</link>
		<dc:creator>Kean</dc:creator>
		<pubDate>Wed, 03 Nov 2010 16:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=347#comment-23732</guid>
		<description>http://dev.twitter.com/anywhere is a useful addition for linking up twitter names and hashtags.</description>
		<content:encoded><![CDATA[<p><a href="http://dev.twitter.com/anywhere" rel="nofollow">http://dev.twitter.com/anywhere</a> is a useful addition for linking up twitter names and hashtags.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a Twitter feed into your WordPress theme by Douglas Radburn</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-a-twitter-feed-into-your-wordpress-theme/comment-page-1/#comment-23728</link>
		<dc:creator>Douglas Radburn</dc:creator>
		<pubDate>Wed, 03 Nov 2010 10:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=347#comment-23728</guid>
		<description>Maybe you&#039;re right and I&#039;ve just never had that type of link before... :(</description>
		<content:encoded><![CDATA[<p>Maybe you&#8217;re right and I&#8217;ve just never had that type of link before&#8230; :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a Twitter feed into your WordPress theme by eggchops</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-a-twitter-feed-into-your-wordpress-theme/comment-page-1/#comment-23727</link>
		<dc:creator>eggchops</dc:creator>
		<pubDate>Wed, 03 Nov 2010 10:06:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=347#comment-23727</guid>
		<description>Random, it didn&#039;t work without it...just left the a open until the latter preg_replace closed it so I had a load of text linked and not closed... :S</description>
		<content:encoded><![CDATA[<p>Random, it didn&#8217;t work without it&#8230;just left the a open until the latter preg_replace closed it so I had a load of text linked and not closed&#8230; :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a Twitter feed into your WordPress theme by Douglas Radburn</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-a-twitter-feed-into-your-wordpress-theme/comment-page-1/#comment-23723</link>
		<dc:creator>Douglas Radburn</dc:creator>
		<pubDate>Wed, 03 Nov 2010 07:42:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=347#comment-23723</guid>
		<description>Of course not silly sausage - preg_replace just replaces the URL within the href, it doesn&#039;t need the closing /a as it doesn&#039;t do anything with it!</description>
		<content:encoded><![CDATA[<p>Of course not silly sausage &#8211; preg_replace just replaces the URL within the href, it doesn&#8217;t need the closing /a as it doesn&#8217;t do anything with it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get a Twitter feed into your WordPress theme by eggchops</title>
		<link>http://www.douglasradburn.co.uk/how-to-get-a-twitter-feed-into-your-wordpress-theme/comment-page-1/#comment-23716</link>
		<dc:creator>eggchops</dc:creator>
		<pubDate>Tue, 02 Nov 2010 16:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.douglasradburn.co.uk/?p=347#comment-23716</guid>
		<description>&#039;a&#039; tag got removed there...
They don&#039;t have a closing &#039;a&#039; it should have been.</description>
		<content:encoded><![CDATA[<p>&#8216;a&#8217; tag got removed there&#8230;<br />
They don&#8217;t have a closing &#8216;a&#8217; it should have been.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

