<?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>Programming Thematic 4 You &#187; remove</title>
	<atom:link href="http://programming.thematic4you.com/tag/remove/feed/" rel="self" type="application/rss+xml" />
	<link>http://programming.thematic4you.com</link>
	<description>Code Snippets and more ...</description>
	<lastBuildDate>Wed, 20 Oct 2010 10:24:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to remove widget areas from the backend?</title>
		<link>http://programming.thematic4you.com/2010/02/how-to-remove-widget-areas-from-the-backend/</link>
		<comments>http://programming.thematic4you.com/2010/02/how-to-remove-widget-areas-from-the-backend/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 14:59:15 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Widget Area]]></category>
		<category><![CDATA[0.9.6.x]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://programming.thematic4you.com/?p=24</guid>
		<description><![CDATA[You might want to remove a widget area from the backend, because it is not needed for your child theme. Or you don't want a customer to mess with it.]]></description>
			<content:encoded><![CDATA[<p>You might want to remove a widget area from the backend, because it is not needed for your child theme. Or you don&#8217;t want a customer to mess with it.<span id="more-24"></span></p>
<p>Just copy the following code into your child theme&#8217;s functions.php:</p>
<pre class="brush: php; title: ; notranslate">function remove_widgetized_area($content) {
	unset($content['Secondary Aside']);
	return $content;
}
add_filter('thematic_widgetized_areas', 'remove_widgetized_area');</pre>
<p>Here&#8217;s a list of the default widget areas:</pre>
<ul>
<li>'Primary Aside'</li>
<li>'Secondary Aside'</li>
<li>'1st Subsidiary Aside'</li>
<li>'2nd Subsidiary Aside'</li>
<li>'3rd Subsidiary Aside'</li>
<li>'Index Top'</li>
<li>'Index Insert'</li>
<li>'Index Bottom'</li>
<li>'Single Top'</li>
<li>'Single Insert'</li>
<li>'Single Bottom'</li>
<li>'Page Top'</li>
<li>'Page Bottom'</li>
</ul>
<p>Please use the <a title="ThemeShaper Forums" href="http://themeshaper.com/forums">ThemeShaper Forums</a> for any further questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://programming.thematic4you.com/2010/02/how-to-remove-widget-areas-from-the-backend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

