# wordpress-seo/27.9/src/services/health-check/postname-permalink-runner.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 27.9. 42 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.9/code/src/services/health-check/postname-permalink-runner.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.9/raw/src/services/health-check/postname-permalink-runner.php
- Modified: 2023-05-23T11:53:56+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/wordpress-seo/27.9/code/src/services/health-check/postname-permalink-runner.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Services\Health_Check;

/**
 * Runs the Postname_Permalink health check.
 */
class Postname_Permalink_Runner implements Runner_Interface {

	/**
	 * Is set to true when permalinks are set to contain the post name
	 *
	 * @var bool
	 */
	private $permalinks_contain_postname;

	/**
	 * Constructor.
	 */
	public function __construct() {
		$this->permalinks_contain_postname = false;
	}

	/**
	 * Runs the health check. Checks if permalinks are set to contain the post name.
	 *
	 * @return void
	 */
	public function run() {
		$this->permalinks_contain_postname = ( \strpos( \get_option( 'permalink_structure' ), '%postname%' ) !== false );
	}

	/**
	 * Returns true if permalinks are set to contain the post name.
	 *
	 * @return bool True if permalinks are set to contain the post name.
	 */
	public function is_successful() {
		return $this->permalinks_contain_postname;
	}
}

```
