You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
380 B
PHTML
27 lines
380 B
PHTML
7 months ago
|
<?php
|
||
|
/**
|
||
|
* An interface for registering hooks with WordPress.
|
||
|
*
|
||
|
* @since 0.9.0
|
||
|
* @package RankMath
|
||
|
* @subpackage RankMath\Core
|
||
|
* @author Rank Math <support@rankmath.com>
|
||
|
*/
|
||
|
|
||
|
namespace RankMath;
|
||
|
|
||
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
||
|
/**
|
||
|
* Runner.
|
||
|
*/
|
||
|
interface Runner {
|
||
|
|
||
|
/**
|
||
|
* Register all hooks to WordPress
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function hooks();
|
||
|
}
|