admin_settings.php 375 B

123456789
  1. <!-- This file outputs the settings form fields for a lot of the settings pages -->
  2. <form action="options.php" method="POST">
  3. <input type="hidden" name="tab" value="<?php echo $current_tab;?>" />
  4. <?php settings_fields('swpm-settings-tab-' . $current_tab); ?>
  5. <?php do_settings_sections('simple_wp_membership_settings'); ?>
  6. <?php submit_button(); ?>
  7. </form>