# wordpress-seo/18.0/src/routes/route-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.0/code/src/routes/route-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.0/raw/src/routes/route-interface.php
- Modified: 2020-09-01T12:27:02+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.0/code/src/routes/route-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Routes;

use Yoast\WP\SEO\Loadable_Interface;

/**
 * Route interface.
 */
interface Route_Interface extends Loadable_Interface {

	/**
	 * Registers routes with WordPress.
	 *
	 * @return void
	 */
	public function register_routes();
}

```
