# wp-parsely/2.0/parsely-settings.php

Parse.ly, version 2.0. 25 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/2.0/code/parsely-settings.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/2.0/raw/parsely-settings.php
- Modified: 2019-04-29T16:23:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-parsely/2.0/code/parsely-settings.php#L10-L20`.

```php
<?php
/**
 * Settings file
 *
 * Create the settings page for parse.ly
 *
 * @category   Components
 * @package    WordPress
 * @subpackage Parse.ly
 */

?>

<div class="wrap">
	<h2>Parse.ly - Settings <span id="wp-parsely_version">Version <?php echo esc_html( $this::VERSION ); ?></span></h2>
	<form name="parsely" method="post" action="options.php">
		<?php settings_fields( $this::OPTIONS_KEY ); ?>
		<?php do_settings_sections( $this::OPTIONS_KEY ); ?>
		<p class="submit">
			<input name="submit" type="submit" class="button-primary"
				value="<?php esc_attr_e( 'Save Changes' ); ?>"/>
		</p>
	</form>
</div>

```
