-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.php
29 lines (28 loc) · 1008 Bytes
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="wrap">
<style>
.form-table{ background: #ececec; }
h3{ margin-top: 40px;}
</style>
<form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
<div style='float:left; width: 55%; margin-right: 5%;'>
<h2>Outreach Positions</h2>
<?php settings_fields( 'outreach_options' ); ?>
<?php do_settings_sections( 'outreach_options' ); ?>
<p class="submit">
<input name="Submit" type="submit" value="<?php esc_attr_e('Save Changes'); ?>" />
</p>
</div>
<div style='float:left; width: 40%;margin-top: 35px;'>
<?php settings_fields( 'outreach_dates' ); ?>
<?php do_settings_sections( 'outreach_dates' ); ?>
<p class="submit">
<input name="Submit" type="submit" value="<?php esc_attr_e('Save Changes'); ?>" />
</p>
<?php settings_fields( 'inactive_outreaches' ); ?>
<?php do_settings_sections( 'inactive_outreaches' ); ?>
<p class="submit">
<input name="Submit" type="submit" value="<?php esc_attr_e('Save Changes'); ?>" />
</p>
</div>
</form>
</div>