interface-wpseo-wordpress-ajax-integration.php 294 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO
  6. */
  7. /**
  8. * An interface for registering AJAX integrations with WordPress.
  9. */
  10. interface WPSEO_WordPress_AJAX_Integration {
  11. /**
  12. * Registers all AJAX hooks to WordPress.
  13. *
  14. * @return void
  15. */
  16. public function register_ajax_hooks();
  17. }