# wp-parsely/2.5.1/src/parsely-settings.php

Parse.ly, version 2.5.1. 27 lines.

- Page: https://pluginprobe.com/plugins/wp-parsely/2.5.1/code/src/parsely-settings.php
- Raw: https://pluginprobe.com/plugins/wp-parsely/2.5.1/raw/src/parsely-settings.php
- Modified: 2021-05-17T20:30:04+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.5.1/code/src/parsely-settings.php#L10-L20`.

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

/* translators: %s: Plugin version */
$version_string = sprintf( __( 'Version %s', 'wp-parsely' ), $this::VERSION );
?>

<div class="wrap">
	<h1 class="wp-heading-inline"><?php echo esc_html( get_admin_page_title() ); ?></h1> <span id="wp-parsely_version"><?php echo esc_html( $version_string ); ?></span>
	<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', 'wp-parsely' ); ?>"/>
		</p>
	</form>
</div>

```
