# wordpress-seo/27.8/src/introductions/domain/introduction-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.8/code/src/introductions/domain/introduction-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.8/raw/src/introductions/domain/introduction-interface.php
- Modified: 2026-02-17T12:17: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.8/code/src/introductions/domain/introduction-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Introductions\Domain;

/**
 * Represents an introduction.
 */
interface Introduction_Interface {

	/**
	 * Returns the ID.
	 *
	 * @return string
	 */
	public function get_id();

	/**
	 * Returns the requested pagination priority. Lower means earlier.
	 *
	 * @return int
	 */
	public function get_priority();

	/**
	 * Returns whether this introduction should show.
	 *
	 * @return bool
	 */
	public function should_show();
}

```
