TGC Footer Sidebar Area
// Register Sidebars function custom_sidebars() { $args = array( 'id' => 'footer_sidebar', 'class' => 'footer-widget-area', 'name' => __( 'Footer Columns', 'text_domain' ), 'description' => __( 'Widget area for for footer columns', 'text_domain' ), 'before_title' => '<div class="footer-widget">', 'after_widget' => '</div>', ); register_sidebar( $args ); } add_action( 'widgets_init', 'custom_sidebars' );