esc_html__('Fields', 'mailchimp-for-wp'), 'messages' => esc_html__('Messages', 'mailchimp-for-wp'), 'settings' => esc_html__('Settings', 'mailchimp-for-wp'), 'appearance' => esc_html__('Appearance', 'mailchimp-for-wp'), ]; /** * Filters the setting tabs on the "edit form" screen. * * @param array $tabs */ $tabs = apply_filters('mc4wp_admin_edit_form_tabs', $tabs); ?>

Mailchimp for WordPress | name); ?>

element ?>
ID)) . '" size="' . ( strlen($form->ID) + 15 ) . '">'); ?>
$name) { $class = ( $active_tab === $tab ) ? 'mc4wp-tab-active' : ''; echo "
"; /** * Runs when outputting a tab section on the "edit form" screen * * @param string $tab */ do_action('mc4wp_admin_edit_form_output_' . $tab . '_tab', $opts, $form); $tab_file = __DIR__ . '/tabs/form-' . $tab . '.php'; if (file_exists($tab_file)) { include $tab_file; } // end of .tab echo '
'; } // foreach tabs ?>