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.
Just copy the following code into your child theme’s functions.php:
function remove_widgetized_area($content) { unset($content['Secondary Aside']); return $content; } add_filter('thematic_widgetized_areas', 'remove_widgetized_area');
Here’s a list of the default widget areas:
Please use the ThemeShaper Forums for any further questions.
Your email is never published nor shared. Required fields are marked *
You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
@DeFries .. will be there as long as they offer Frikandel & Pommes Special ;) » 2010/07/11
More in Widget Area (3 of 3 articles)
How to remove widget areas from the backend?
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.
Just copy the following code into your child theme’s functions.php:
function remove_widgetized_area($content) { unset($content['Secondary Aside']); return $content; } add_filter('thematic_widgetized_areas', 'remove_widgetized_area');Here’s a list of the default widget areas:
Please use the ThemeShaper Forums for any further questions.