'widget-business-hours', 'description' => __( 'A custom widget that displays business hours.', 'nadzhq' ) ) ); } /** * Generates the back-end layout for the widget */ public function form( $instance ) { // Default widget settings $defaults = array( 'title' => 'Business Hours', 'hours_description' => '', 'hours_monday_friday' => '8am to 5pm', 'hours_saturday' => 'Closed', 'hours_sunday' => 'Closed' ); $instance = wp_parse_args( (array) $instance, $defaults ); // The widget content ?>

' . $hours_description . '

'; } echo '