interface-wpseo-wordpress-integration.php 348 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO
  6. */
  7. if ( ! interface_exists( 'WPSEO_WordPress_Integration' ) ) {
  8. /**
  9. * An interface for registering integrations with WordPress.
  10. */
  11. interface WPSEO_WordPress_Integration {
  12. /**
  13. * Registers all hooks to WordPress.
  14. *
  15. * @return void
  16. */
  17. public function register_hooks();
  18. }
  19. }