Times Widget
FBC Heber
// Register Sidebar function times_widget() { $args = array( 'id' => 'times-widget', 'name' => __( 'Service Times', 'text_domain' ), 'description' => __( 'Add all service times here for viewing on the home page', 'text_domain' ), 'class' => 'times-widget', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', ); register_sidebar( $args ); } // Hook into the 'widgets_init' action add_action( 'widgets_init', 'times_widget' );