# wordpress-seo/28.3/src/loadable-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.3/code/src/loadable-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.3/raw/src/loadable-interface.php
- Modified: 2021-01-13T09:06:28+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/28.3/code/src/loadable-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO;

/**
 * An interface for registering integrations with WordPress
 */
interface Loadable_Interface {

	/**
	 * Returns the conditionals based on which this loadable should be active.
	 *
	 * @return array
	 */
	public static function get_conditionals();
}

```
