<?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 on: Custom post types in WordPress</title>
	<atom:link href="http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress</link>
	<description>Life, Blogging, and WordPress</description>
	<lastBuildDate>Wed, 23 May 2012 07:51:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: asad</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1617834</link>
		<dc:creator>asad</dc:creator>
		<pubDate>Wed, 16 May 2012 21:59:21 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1617834</guid>
		<description>hi justin can you plz help me to figur out my problem...
I have a custom post type. The archive page works fine. Clicking into the posts no content shows.
thanks in advance</description>
		<content:encoded><![CDATA[<p>hi justin can you plz help me to figur out my problem&#8230;<br />
I have a custom post type. The archive page works fine. Clicking into the posts no content shows.<br />
thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Tadlock</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1584615</link>
		<dc:creator>Justin Tadlock</dc:creator>
		<pubDate>Mon, 14 May 2012 04:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1584615</guid>
		<description>Honestly, I recommend using a different theme.  Themes should never register custom post types.  It&#039;s plugin territory.  I&#039;m not sure if I&#039;d trust a &quot;premium&quot; theme author who adds this stuff to a theme for sell.

Nevertheless, I can&#039;t help without the actual theme.</description>
		<content:encoded><![CDATA[<p>Honestly, I recommend using a different theme.  Themes should never register custom post types.  It&#8217;s plugin territory.  I&#8217;m not sure if I&#8217;d trust a &#8220;premium&#8221; theme author who adds this stuff to a theme for sell.</p>
<p>Nevertheless, I can&#8217;t help without the actual theme.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeremy</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1580081</link>
		<dc:creator>jeremy</dc:creator>
		<pubDate>Sun, 13 May 2012 16:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1580081</guid>
		<description>Hi Justin,

How would I modify labels and taxonomies of an existing CPT defined in the parent from within the child functions.php file?  (I am using a premium theme and want to override their default labels.)  

I found a few bits on this elsewhere but it just wasn&#039;t clear enough.   You always find a way to make these things clear.  

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Justin,</p>
<p>How would I modify labels and taxonomies of an existing CPT defined in the parent from within the child functions.php file?  (I am using a premium theme and want to override their default labels.)  </p>
<p>I found a few bits on this elsewhere but it just wasn&#8217;t clear enough.   You always find a way to make these things clear.  </p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How To Use Custom Post Types To Organize Online Marketing Campaigns &#124; Smashing WordPress</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1400608</link>
		<dc:creator>How To Use Custom Post Types To Organize Online Marketing Campaigns &#124; Smashing WordPress</dc:creator>
		<pubDate>Sat, 28 Apr 2012 15:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1400608</guid>
		<description>[...] “Custom Post Types in WordPress,” Justin Tadlock [...]</description>
		<content:encoded><![CDATA[<p>[...] “Custom Post Types in WordPress,” Justin Tadlock [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noorani Bakerally</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1291594</link>
		<dc:creator>Noorani Bakerally</dc:creator>
		<pubDate>Sat, 21 Apr 2012 06:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1291594</guid>
		<description>Hi, u&#039;re post is great, I&#039;m just running with a little problem. I&#039;m using your tutorial as a walkthrough. Everything is fine when I go on this page, I see the &#039;test&#039; post

http://localhost/wordpress/super_duper/test/

However, we I go on this page(following URL) to see all the post of type super_duper, i get a 404 error. 

http://localhost/wordpress/super_duper

I was expecting to see all the post of types super_duper. Here are my codes;

&lt;pre&gt;&lt;code&gt;add_action( &#039;init&#039;, &#039;create_my_post_types&#039; );
function create_my_post_types() 
{
        register_post_type( &#039;super_duper&#039;,
                array(
                        &#039;labels&#039; =&gt; array
                        (
                                &#039;name&#039; =&gt; __( &#039;Super Dupers&#039; ),
                                &#039;singular_name&#039; =&gt; __( &#039;Super Duper&#039; ),
                                &#039;add_new&#039; =&gt; __( &#039;Add New&#039; ),
                                &#039;add_new_item&#039; =&gt; __( &#039;Add New Super Duper&#039; ),
                                &#039;edit&#039; =&gt; __( &#039;Edit&#039; ),
                                &#039;edit_item&#039; =&gt; __( &#039;Edit Super Duper&#039; ),
                                &#039;new_item&#039; =&gt; __( &#039;New Super Duper&#039; ),
                                &#039;view&#039; =&gt; __( &#039;View Super Duper&#039; ),
                                &#039;view_item&#039; =&gt; __( &#039;View Super Duper&#039; ),
                                &#039;search_items&#039; =&gt; __( &#039;Search Super Dupers&#039; ),
                                &#039;not_found&#039; =&gt; __( &#039;No super dupers found&#039; ),
                                &#039;not_found_in_trash&#039; =&gt; __( &#039;No super dupers found in Trash&#039; ),
                                &#039;parent&#039; =&gt; __( &#039;Parent Super Duper&#039; ),
               
                        ),
                        &#039;public&#039; =&gt; true,
                        &#039;show_ui&#039; =&gt; true,
                        &#039;publicly_queryable&#039; =&gt; true,
                        &#039;exclude_from_search&#039; =&gt; false,
                        &#039;rewrite&#039; =&gt; array( &#039;with_front&#039; =&gt; true ),
                )       
        );
}&lt;/code&gt;&lt;/pre&gt;

thanks</description>
		<content:encoded><![CDATA[<p>Hi, u&#8217;re post is great, I&#8217;m just running with a little problem. I&#8217;m using your tutorial as a walkthrough. Everything is fine when I go on this page, I see the &#8216;test&#8217; post</p>
<p><a href="http://localhost/wordpress/super_duper/test/" rel="nofollow">http://localhost/wordpress/super_duper/test/</a></p>
<p>However, we I go on this page(following URL) to see all the post of type super_duper, i get a 404 error. </p>
<p><a href="http://localhost/wordpress/super_duper" rel="nofollow">http://localhost/wordpress/super_duper</a></p>
<p>I was expecting to see all the post of types super_duper. Here are my codes;</p>
<pre><code>add_action( 'init', 'create_my_post_types' );
function create_my_post_types()
{
        register_post_type( 'super_duper',
                array(
                        'labels' =&gt; array
                        (
                                'name' =&gt; __( 'Super Dupers' ),
                                'singular_name' =&gt; __( 'Super Duper' ),
                                'add_new' =&gt; __( 'Add New' ),
                                'add_new_item' =&gt; __( 'Add New Super Duper' ),
                                'edit' =&gt; __( 'Edit' ),
                                'edit_item' =&gt; __( 'Edit Super Duper' ),
                                'new_item' =&gt; __( 'New Super Duper' ),
                                'view' =&gt; __( 'View Super Duper' ),
                                'view_item' =&gt; __( 'View Super Duper' ),
                                'search_items' =&gt; __( 'Search Super Dupers' ),
                                'not_found' =&gt; __( 'No super dupers found' ),
                                'not_found_in_trash' =&gt; __( 'No super dupers found in Trash' ),
                                'parent' =&gt; __( 'Parent Super Duper' ),

                        ),
                        'public' =&gt; true,
                        'show_ui' =&gt; true,
                        'publicly_queryable' =&gt; true,
                        'exclude_from_search' =&gt; false,
                        'rewrite' =&gt; array( 'with_front' =&gt; true ),
                )
        );
}</code></pre>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark shirley</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1172120</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Sat, 14 Apr 2012 15:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1172120</guid>
		<description>I since found that the question from my last posted comment is not possible, but I do have another question what is the CSS to target a template named single-movies.php that I&#039;ve created for a CPT called movies - Thanks</description>
		<content:encoded><![CDATA[<p>I since found that the question from my last posted comment is not possible, but I do have another question what is the CSS to target a template named single-movies.php that I&#8217;ve created for a CPT called movies &#8211; Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: some cool links which helps you to make you full programmer &#124; myjunk.in</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1153351</link>
		<dc:creator>some cool links which helps you to make you full programmer &#124; myjunk.in</dc:creator>
		<pubDate>Fri, 13 Apr 2012 05:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1153351</guid>
		<description>[...] http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress" rel="nofollow">http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark shirley</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1135791</link>
		<dc:creator>mark shirley</dc:creator>
		<pubDate>Wed, 11 Apr 2012 20:53:14 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1135791</guid>
		<description>Hi I’m using custom-post-types-ui to create CPT’s with custom fields in. When I use a taxonomy picker or tag cloud I can’t get the custom field stuff to show up, is this usual. I have read about custom post archives but am not sure if its something to do with this. Can anyone point me to some relevant information. Thanks</description>
		<content:encoded><![CDATA[<p>Hi I’m using custom-post-types-ui to create CPT’s with custom fields in. When I use a taxonomy picker or tag cloud I can’t get the custom field stuff to show up, is this usual. I have read about custom post archives but am not sure if its something to do with this. Can anyone point me to some relevant information. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nino</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1100795</link>
		<dc:creator>Nino</dc:creator>
		<pubDate>Mon, 09 Apr 2012 10:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1100795</guid>
		<description>Hi, I had a hard time triing to understand if a Custom Post Type could help me for what I&#039;m looking for.
What I realized is that a Custom Post Type is not a Post, right ?

Could you just answer to this question, it is very important please :
my theme inserts shortcode generator in blog posts to do many things. I don&#039;t want registered people to use it.
Can I create with Custom Post Type blog posts just like if I didn&#039;t use this theme ?

Thanks
Nino</description>
		<content:encoded><![CDATA[<p>Hi, I had a hard time triing to understand if a Custom Post Type could help me for what I&#8217;m looking for.<br />
What I realized is that a Custom Post Type is not a Post, right ?</p>
<p>Could you just answer to this question, it is very important please :<br />
my theme inserts shortcode generator in blog posts to do many things. I don&#8217;t want registered people to use it.<br />
Can I create with Custom Post Type blog posts just like if I didn&#8217;t use this theme ?</p>
<p>Thanks<br />
Nino</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: salman</title>
		<link>http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress#comment-1019176</link>
		<dc:creator>salman</dc:creator>
		<pubDate>Sun, 01 Apr 2012 14:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://justintadlock.com/?p=2336#comment-1019176</guid>
		<description>wow awesome dud. you are the 1st man those give us complete article reference.
thnx</description>
		<content:encoded><![CDATA[<p>wow awesome dud. you are the 1st man those give us complete article reference.<br />
thnx</p>
]]></content:encoded>
	</item>
</channel>
</rss>

