'', 'image' => '', 'text' => '', 'greeting_text' => '', 'signature_text' => '', 'signature_image' => '', ); function __construct() { $widget_ops = array( 'description' => esc_html__( 'Provide information for the blog author, accompanied by a picture.', 'brittany-light' ) ); $control_ops = array(); parent::__construct( 'ci-about', $name = esc_html__( 'Theme - About Me', 'brittany-light' ), $widget_ops, $control_ops ); } function widget( $args, $instance ) { extract( $args ); $instance = wp_parse_args( (array) $instance, $this->defaults ); $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base ); $text = $instance['text']; $image = $instance['image']; $greeting_text = $instance['greeting_text']; $signature_text = $instance['signature_text']; $signature_image = $instance['signature_image']; echo $before_widget; if ( $title ) { echo $before_title . $title . $after_title; } echo '