<?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: How To Remove A Themes Post Type With A WordPress Template	</title>
	<atom:link href="https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/</link>
	<description>The Best Cincinnati Web Design Agency</description>
	<lastBuildDate>Tue, 28 Jun 2016 03:55:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Marc Comish		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-431</link>

		<dc:creator><![CDATA[Marc Comish]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 03:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-431</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-430&quot;&gt;Marc Comish&lt;/a&gt;.

upon re-reading this i think the article does say that, the wording may have just confused me. either way, above is an example.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-430">Marc Comish</a>.</p>
<p>upon re-reading this i think the article does say that, the wording may have just confused me. either way, above is an example.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Marc Comish		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-430</link>

		<dc:creator><![CDATA[Marc Comish]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 03:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-430</guid>

					<description><![CDATA[a slight modification to this, in order to do more than one you need to combine the remove_menu_page lines under a single hide_menu_item function like this:

function hide_menu_items() { 
remove_menu_page( &#039;edit.php?post_type=portfolio&#039; );  

remove_menu_page( &#039;edit.php?post_type=service&#039; );  

remove_menu_page( &#039;edit.php?post_type=team&#039; );  

remove_menu_page( &#039;edit.php?post_type=testimonial&#039; );  

}
add_action( &#039;admin_menu&#039;, &#039;hide_menu_items&#039; );]]></description>
			<content:encoded><![CDATA[<p>a slight modification to this, in order to do more than one you need to combine the remove_menu_page lines under a single hide_menu_item function like this:</p>
<p>function hide_menu_items() {<br />
remove_menu_page( &#8216;edit.php?post_type=portfolio&#8217; );  </p>
<p>remove_menu_page( &#8216;edit.php?post_type=service&#8217; );  </p>
<p>remove_menu_page( &#8216;edit.php?post_type=team&#8217; );  </p>
<p>remove_menu_page( &#8216;edit.php?post_type=testimonial&#8217; );  </p>
<p>}<br />
add_action( &#8216;admin_menu&#8217;, &#8216;hide_menu_items&#8217; );</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nikolas Branis		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-376</link>

		<dc:creator><![CDATA[Nikolas Branis]]></dc:creator>
		<pubDate>Sat, 16 May 2015 17:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-376</guid>

					<description><![CDATA[I think the title of this post should be &quot;How to remove a themes post type from dashboard menu&quot;.]]></description>
			<content:encoded><![CDATA[<p>I think the title of this post should be &#8220;How to remove a themes post type from dashboard menu&#8221;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Piet		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-248</link>

		<dc:creator><![CDATA[Piet]]></dc:creator>
		<pubDate>Sun, 01 Dec 2013 11:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-248</guid>

					<description><![CDATA[this merely hides the post types you don&#039;t need, your site will still have the &quot;bloat&quot; and overhead that these slurp up, better to hook into the yit_unregister_post_types() function (line 469 of bazar/theme/functions-template.php)]]></description>
			<content:encoded><![CDATA[<p>this merely hides the post types you don&#8217;t need, your site will still have the &#8220;bloat&#8221; and overhead that these slurp up, better to hook into the yit_unregister_post_types() function (line 469 of bazar/theme/functions-template.php)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: David Jardine		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-244</link>

		<dc:creator><![CDATA[David Jardine]]></dc:creator>
		<pubDate>Tue, 26 Nov 2013 04:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-244</guid>

					<description><![CDATA[Awesome and neat and quick!  Thank you :D]]></description>
			<content:encoded><![CDATA[<p>Awesome and neat and quick!  Thank you 😀</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: alandot spiders		</title>
		<link>https://www.ideasandpixels.com/articles/how-to-remove-a-theme-post-type-with-a-wordpress-template/#comment-235</link>

		<dc:creator><![CDATA[alandot spiders]]></dc:creator>
		<pubDate>Tue, 15 Oct 2013 08:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=1770#comment-235</guid>

					<description><![CDATA[thank you for sharing this.]]></description>
			<content:encoded><![CDATA[<p>thank you for sharing this.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
