9 lines
375 B
PHP
9 lines
375 B
PHP
|
|
<!-- This file outputs the settings form fields for a lot of the settings pages -->
|
|
<form action="options.php" method="POST">
|
|
<input type="hidden" name="tab" value="<?php echo $current_tab;?>" />
|
|
<?php settings_fields('swpm-settings-tab-' . $current_tab); ?>
|
|
<?php do_settings_sections('simple_wp_membership_settings'); ?>
|
|
<?php submit_button(); ?>
|
|
</form>
|
|
|