Like the title says, I'm trying to remove most of the widget areas in my theme. I'm currently using the code:
function remove_widgetized_area($content) {
unset($content['1st Subsidiary Aside','2nd Subsidiary Aside','3rd Subsidiary Aside','Index Top','Index Insert','Index Bottom','Single Top','Single Insert','Single Bottom','Page Top','Page Bottom']);
return $content;
}
With the corresponding function call, but it gives me an error about expecting a bracket and getting a comma. Am I going to have to make separate unset calls for each area?