I think I have it close but I'm not seeing the widget areas in the widget settings under appearance?
I'm using the Weaver theme and the TTW_Trans is how it's done in that theme. My two widget areas (similar to the footer widgets):
// Area B1, located at the bottom left side of the page. Empty by default.
register_sidebar( array(
'name' => __( 'The left bottom widget area', TTW_TRANS ),
'id' => 'left-bottom-widget-area',
'description' => __( 'The left bottom widget area', TTW_TRANS ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
// Area B2, located at bottom right side of page. Empty by default.
register_sidebar( array(
'name' => __( 'The right bottom widget area', TTW_TRANS ),
'id' => 'right-bottom-widget-area',
'description' => __( 'The right bottom widget area', TTW_TRANS ),
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
the code in my new template file near the bottom:
</div><!-- #content -->
<?php weaver_put_wvr_widgetarea( 'left-bottom-widget-area','right-bottom-widget-area'); ?>
</div><!-- #container -->
<?php get_footer(); ?>
My site is still functional that's why I think I'm close... :)