| 1 |
<div class="wrap"> |
| 2 |
<h2>Parse.ly - Settings <span id="wp-parsely_version">Version <?php echo esc_html( $this::VERSION ); ?></span></h2> |
| 3 |
<form name="parsely" method="post" action="options.php"> |
| 4 |
<?php settings_fields( $this::OPTIONS_KEY ); ?> |
| 5 |
<?php do_settings_sections( $this::OPTIONS_KEY ); ?> |
| 6 |
<p class="submit"> |
| 7 |
<input name="submit" type="submit" class="button-primary" |
| 8 |
value="<?php esc_attr_e( 'Save Changes' ); ?>"/> |
| 9 |
</p> |
| 10 |
</form> |
| 11 |
</div> |
| 12 |
|