'', 'button' => __( 'Subscribe', 'another-mailchimp-widget' ), 'first_name_text' => __( 'First Name', 'another-mailchimp-widget' ), 'last_name_text' => __( 'Last Name', 'another-mailchimp-widget' ), 'email_text' => __( 'Your E-mail', 'another-mailchimp-widget' ), 'placeholder' => true, 'firstname' => false, 'lastname' => false, 'success' => __( 'Thank you for joining our mailing list.', 'another-mailchimp-widget' ), 'failure' => __( 'There was a problem processing your submission.', 'another-mailchimp-widget' ) ), $params ) ); ob_start(); $instance = array( 'current_mailing_list' => $list, 'signup_text' => $button, 'first_name_text' => $first_name_text, 'last_name_text' => $last_name_text, 'email_text' => $email_text, 'showplaceholder' => ( $placeholder == 'false' ) ? false : true, 'collect_first' => ( $firstname == 'false' ) ? false : true, 'collect_last' => ( $lastname == 'false' ) ? false : true, 'success_message' => $success, 'failure_message' => $failure ); $shMailChimp = new AN_Shortcode_MailChimp( $instance, $index_sh ); $shMailChimp->get_MailChimp( $instance ); $output = ob_get_contents(); ob_end_clean(); $index_sh ++; return $output; }