Big City Contracting Footer Widget Areas
4 Widget Areas in Columns for the footer area for Big City Contracting website.
// Register Sidebars function bigCity_sidebars() { $args = array( 'id' => 'footer_col1', 'class' => 'footer-col', 'name' => __( 'Footer Column 1', 'text_domain' ), 'description' => __( 'First Column in the Footer Area', 'text_domain' ), 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', 'before_widget' => ' ', 'after_widget' => ' ', ); register_sidebar( $args ); $args = array( 'id' => 'footer_col2', 'class' => 'footer-col', 'name' => __( 'Footer Column 2', 'text_domain' ), 'description' => __( 'Second Column in the Footer Area', 'text_domain' ), 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', 'before_widget' => ' ', 'after_widget' => ' ', ); register_sidebar( $args ); $args = array( 'id' => 'footer_col3', 'class' => 'footer-col', 'name' => __( 'Footer Column 3', 'text_domain' ), 'description' => __( 'Third Column in the Footer Area', 'text_domain' ), 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', 'before_widget' => ' ', 'after_widget' => ' ', ); register_sidebar( $args ); $args = array( 'id' => 'footer_col4', 'class' => 'footer-col', 'name' => __( 'Footer Column 4', 'text_domain' ), 'description' => __( 'Fourth Column in the Footer Area', 'text_domain' ), 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', 'before_widget' => ' ', 'after_widget' => ' ', ); register_sidebar( $args ); } add_action( 'widgets_init', 'bigCity_sidebars' );