settings-section-general.php
12 lines
| 1 | <form method="post" action="options.php"> |
| 2 | |
| 3 | <?php settings_fields( \AC\Settings\General::GROUP ); ?> |
| 4 | |
| 5 | <?php foreach ( $this->options as $option ) : ?> |
| 6 | <?= $option->render(); ?> |
| 7 | <?php endforeach; ?> |
| 8 | |
| 9 | <p class="save-button"> |
| 10 | <input type="submit" class="button" value="<?php echo esc_attr( __( 'Save' ) ); ?>"/> |
| 11 | </p> |
| 12 | </form> |