is there a specific way of displaying widget areas through thematic? In the widget-extensions.php there's a piece of code in the thematic_widget_init()
$widgets_dir = @ dir(ABSPATH . '/wp-content/themes/' . get_stylesheet() . '/widgets');
if ((TEMPLATENAME != THEMENAME) && ($widgets_dir)) {
while(($widgetFile = $widgets_dir->read()) !== false) {
if (!preg_match('|^\.+$|', $widgetFile) && preg_match('|\.php$|', $widgetFile))
include(ABSPATH . '/wp-content/themes/' . get_stylesheet() . '/widgets/' . $widgetFile);
}
}
so I created a file in my child theme dir 'widgets/file name' and it registered the widget area with no problem. Is there a specific way to display the widget area in home.php? or should I create a function and call the dynamic_sidebar(); and add_action to a thematic hook?
Thanks