interface-wpseo-wordpress-integration.php 323 B

12345678910111213141516171819
  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. public function register_hooks();
  16. }
  17. }