# wordpress-seo/trunk/src/llms-txt/domain/markdown/sections/section-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/trunk/code/src/llms-txt/domain/markdown/sections/section-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/src/llms-txt/domain/markdown/sections/section-interface.php
- Modified: 2026-01-20T12:23:48+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/trunk/code/src/llms-txt/domain/markdown/sections/section-interface.php#L10-L20`.

```php
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded
namespace Yoast\WP\SEO\Llms_Txt\Domain\Markdown\Sections;

use Yoast\WP\SEO\Llms_Txt\Domain\Markdown\Items\Item_Interface;

/**
 * Represents a section.
 */
interface Section_Interface extends Item_Interface {

	/**
	 * Returns the prefix of the section.
	 *
	 * @return string
	 */
	public function get_prefix(): string;
}

```
