test
testing
// Register Sidebars function Sections() { $args = array( 'id' => 'about_section', 'class' => 'about_section', 'name' => __( 'About', 'text_domain' ), 'description' => __( 'Section Widgets.', 'text_domain' ), 'before_title' => '<h2 class="about_section-title">', 'after_title' => '</h2>', 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', ); register_sidebar( $args ); $args = array( 'id' => 'team_section', 'class' => 'team_section', 'name' => __( 'Team', 'text_domain' ), 'description' => __( 'Section Widgets.', 'text_domain' ), 'before_title' => '<h2 class="team_section-title">', 'after_title' => '</h2>', 'after_widget' => '<section id="%1$s" class="widget %2$s">', ); register_sidebar( $args ); } add_action( 'widgets_init', 'Sections' );