fields = array( 'user_id' => array( 'label' => esc_html__( 'Select Username', 'bizlight' ), 'type' => 'select', 'default' => 1, 'choices' => $users_array ), ); } /** * Markup for widget */ public function widget( $args, $instance ){ echo $args[ 'before_widget' ]; $instance = $this->init_defaults( $instance ); self::the_profile_card( $instance[ 'user_id' ] ); echo $args[ 'after_widget' ]; } }