# wordpress-seo/trunk/inc/interface-wpseo-wordpress-ajax-integration.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/inc/interface-wpseo-wordpress-ajax-integration.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/trunk/raw/inc/interface-wpseo-wordpress-ajax-integration.php
- Modified: 2018-08-14T08:15:24+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/inc/interface-wpseo-wordpress-ajax-integration.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO
 */

/**
 * An interface for registering AJAX integrations with WordPress.
 */
interface WPSEO_WordPress_AJAX_Integration {

	/**
	 * Registers all AJAX hooks to WordPress.
	 *
	 * @return void
	 */
	public function register_ajax_hooks();
}

```
