fields = array( 'user_id' => array( 'label' => esc_html__( 'Select Username', 'bizfit' ), 'type' => 'select', 'default' => 1, 'choices' => $users_array ), ); } /** * Markup for widget * * @static * @access public * @since 1.0.0 * * @package BizFit WordPress Theme */ public function widget( $args, $instance ){ echo $args[ 'before_widget' ]; $instance = $this->init_defaults( $instance ); BizFit_Theme::the_profile_card( $instance[ 'user_id' ] ); echo $args[ 'after_widget' ]; } }