# wordpress-seo/27.6/src/conditionals/new-settings-ui-conditional.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/conditionals/new-settings-ui-conditional.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.6/raw/src/conditionals/new-settings-ui-conditional.php
- Modified: 2022-07-26T14:35:50+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.6/code/src/conditionals/new-settings-ui-conditional.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Feature flag conditional for the new settings UI.
 */
class New_Settings_Ui_Conditional extends Feature_Flag_Conditional {

	/**
	 * Returns the name of the feature flag.
	 *
	 * @return string The name of the feature flag.
	 */
	protected function get_feature_flag() {
		return 'NEW_SETTINGS_UI';
	}
}

```
