| 1 |
<?php |
| 2 |
/** |
| 3 |
* Settings file |
| 4 |
* |
| 5 |
* Create the settings page for parse.ly |
| 6 |
* |
| 7 |
* @category Components |
| 8 |
* @package WordPress |
| 9 |
* @subpackage Parse.ly |
| 10 |
*/ |
| 11 |
|
| 12 |
?> |
| 13 |
|
| 14 |
<div class="wrap"> |
| 15 |
<h2>Parse.ly - Settings <span id="wp-parsely_version">Version <?php echo esc_html( $this::VERSION ); ?></span></h2> |
| 16 |
<form name="parsely" method="post" action="options.php"> |
| 17 |
<?php settings_fields( $this::OPTIONS_KEY ); ?> |
| 18 |
<?php do_settings_sections( $this::OPTIONS_KEY ); ?> |
| 19 |
<p class="submit"> |
| 20 |
<input name="submit" type="submit" class="button-primary" |
| 21 |
value="<?php esc_attr_e( 'Save Changes' ); ?>"/> |
| 22 |
</p> |
| 23 |
</form> |
| 24 |
</div> |
| 25 |
|