<?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 keith devon web development</title>
	<atom:link href="http://keithdevon.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://keithdevon.com</link>
	<description>Freelance web design and WordPress development</description>
	<lastBuildDate>Sat, 05 May 2012 20:51:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Perfect WordPress checkboxes by Gerard</title>
		<link>http://keithdevon.com/2012/tuts/perfect-wordpress-checkboxes/comment-page-1/#comment-1235</link>
		<dc:creator>Gerard</dc:creator>
		<pubDate>Sat, 05 May 2012 20:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=717#comment-1235</guid>
		<description>Thanks, I was a little baffled with this problem also for a while</description>
		<content:encoded><![CDATA[<p>Thanks, I was a little baffled with this problem also for a while</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by I went to WordPress London 7 &#124; Tony Scott</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1228</link>
		<dc:creator>I went to WordPress London 7 &#124; Tony Scott</dc:creator>
		<pubDate>Mon, 30 Apr 2012 16:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1228</guid>
		<description>[...] the meetup, Keith Devon gave a clear and succinct presentation on working with custom post types, and how they can be used in conjunction with templates, custom [...]</description>
		<content:encoded><![CDATA[<p>[...] the meetup, Keith Devon gave a clear and succinct presentation on working with custom post types, and how they can be used in conjunction with templates, custom [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Beginner WordPress Theme Development by London website development</title>
		<link>http://keithdevon.com/2011/news/beginner-wordpress-theme-development/comment-page-1/#comment-1226</link>
		<dc:creator>London website development</dc:creator>
		<pubDate>Mon, 16 Apr 2012 06:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=599#comment-1226</guid>
		<description>&lt;strong&gt;London website development...&lt;/strong&gt;

[...]Beginner WordPress Theme Development &#124; keith devon web development[...]...</description>
		<content:encoded><![CDATA[<p><strong>London website development&#8230;</strong></p>
<p>[...]Beginner WordPress Theme Development | keith devon web development[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by mark shirley</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1225</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Sat, 07 Apr 2012 19:46:39 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1225</guid>
		<description>Plus Im looking for css code to target that specific cpt ie ( .page-single-movies #secondary) to grab parts of the page and style them. Cheers</description>
		<content:encoded><![CDATA[<p>Plus Im looking for css code to target that specific cpt ie ( .page-single-movies #secondary) to grab parts of the page and style them. Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by mark shirley</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1224</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Sat, 07 Apr 2012 19:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1224</guid>
		<description>Hi Keith one more question I&#039;ve been looking for hours to find away to include  a sidebar in my custom post type in my child theme, ideally Id like to choose to switch on the sidebar and switch it off like a normal page but I just cant figure it out are you aware of any tutorials that would help me - thanks Mark</description>
		<content:encoded><![CDATA[<p>Hi Keith one more question I&#8217;ve been looking for hours to find away to include  a sidebar in my custom post type in my child theme, ideally Id like to choose to switch on the sidebar and switch it off like a normal page but I just cant figure it out are you aware of any tutorials that would help me &#8211; thanks Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by kdev</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1220</link>
		<dc:creator>kdev</dc:creator>
		<pubDate>Fri, 06 Apr 2012 14:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1220</guid>
		<description>Hi Mark. Yeah, do the same with archive.php. You can read more about this in the article above. The relevant bit is:

&quot;The single template will let you style your individual custom post types, in our case the single property page. It’s often easiest just to create the new template file (e.g. single-kdev_properties.php), in your theme directory, and copy and paste the code from your theme’s single.php file. Then you can make any changes that you require. Before you do that though, there are some more tricks that will help you make your custom post type really come to life!

&quot;The archive-[posttype].php template will create a page that displays a list of your custom posts. Using the same idea as above, you can copy and paste from your index.php file and edit from there. Remember the ‘has_archive’ argument that we added? That line is telling WordPress to use our custom archive file.&quot;

You may also have to flush your rewrite rules by visiting the &#039;Settings&#039;&gt;&#039;Permalinks&#039; page and clicking &#039;Save&#039;.</description>
		<content:encoded><![CDATA[<p>Hi Mark. Yeah, do the same with archive.php. You can read more about this in the article above. The relevant bit is:</p>
<p>&#8220;The single template will let you style your individual custom post types, in our case the single property page. It’s often easiest just to create the new template file (e.g. single-kdev_properties.php), in your theme directory, and copy and paste the code from your theme’s single.php file. Then you can make any changes that you require. Before you do that though, there are some more tricks that will help you make your custom post type really come to life!</p>
<p>&#8220;The archive-[posttype].php template will create a page that displays a list of your custom posts. Using the same idea as above, you can copy and paste from your index.php file and edit from there. Remember the ‘has_archive’ argument that we added? That line is telling WordPress to use our custom archive file.&#8221;</p>
<p>You may also have to flush your rewrite rules by visiting the &#8216;Settings&#8217;>'Permalinks&#8217; page and clicking &#8216;Save&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by mark shirley</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1219</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Fri, 06 Apr 2012 13:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1219</guid>
		<description>Keith I think I&#039;ve got it,  I copied single.php to my child theme and named it eg single-movies.php, do I need to do the same with archive.php. - Thanks for a really good video. Mark</description>
		<content:encoded><![CDATA[<p>Keith I think I&#8217;ve got it,  I copied single.php to my child theme and named it eg single-movies.php, do I need to do the same with archive.php. &#8211; Thanks for a really good video. Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by mark shirley</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1218</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Fri, 06 Apr 2012 13:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1218</guid>
		<description>How can I add my custom fields to a CPT as I dont have a template to work with, where do i add my php to activate the custom fields I cant find a complete tutorial that shows how to style a CPT</description>
		<content:encoded><![CDATA[<p>How can I add my custom fields to a CPT as I dont have a template to work with, where do i add my php to activate the custom fields I cant find a complete tutorial that shows how to style a CPT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by Perry</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1172</link>
		<dc:creator>Perry</dc:creator>
		<pubDate>Mon, 05 Mar 2012 22:26:28 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1172</guid>
		<description>Cheers for this - nothing better than having a cut and paste example to play with to really help you get your head around a topic.

One of the best tutorials I&#039;ve read on the subject so far, mainly because it covers all the crucial aspects - setting up cpts, cpt templates and meta boxes - in one go.</description>
		<content:encoded><![CDATA[<p>Cheers for this &#8211; nothing better than having a cut and paste example to play with to really help you get your head around a topic.</p>
<p>One of the best tutorials I&#8217;ve read on the subject so far, mainly because it covers all the crucial aspects &#8211; setting up cpts, cpt templates and meta boxes &#8211; in one go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Post Types by Brad Zumbahlen</title>
		<link>http://keithdevon.com/2011/tuts/custom-post-types/comment-page-1/#comment-1170</link>
		<dc:creator>Brad Zumbahlen</dc:creator>
		<pubDate>Wed, 22 Feb 2012 22:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://keithdevon.com/?p=622#comment-1170</guid>
		<description>Great post!! Custom posts have been a confusing topic for me. Other tutorials on the web have not explained it as easily as you have. It now starting to click!
Thanks!</description>
		<content:encoded><![CDATA[<p>Great post!! Custom posts have been a confusing topic for me. Other tutorials on the web have not explained it as easily as you have. It now starting to click!<br />
Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

