# wordpress-seo/18.9/src/conditionals/web-stories-conditional.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.9/code/src/conditionals/web-stories-conditional.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.9/raw/src/conditionals/web-stories-conditional.php
- Modified: 2021-05-18T13:42:44+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/18.9/code/src/conditionals/web-stories-conditional.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Conditionals;

/**
 * Conditional that is only met when Web Stories are active.
 */
class Web_Stories_Conditional implements Conditional {

	/**
	 * Returns `true` when the Web Stories plugins is installed and active.
	 *
	 * @return bool `true` when the Web Stories plugins is installed and active.
	 */
	public function is_met() {
		return \function_exists( '\Google\Web_Stories\get_plugin_instance' );
	}
}

```
