3rdparty
1 year ago
admin
11 months ago
cli
5 years ago
frontend
1 year ago
helpers
11 months ago
metaboxes
2 years ago
module
1 year ago
modules
11 months ago
opengraph
1 year ago
replace-variables
1 year ago
rest
1 year ago
settings
1 year ago
traits
1 year ago
updates
1 year ago
class-auto-updater.php
5 years ago
class-cmb2.php
2 years ago
class-common.php
1 year ago
class-compatibility.php
1 year ago
class-data-encryption.php
1 year ago
class-defaults.php
6 years ago
class-frontend-seo-score.php
1 year ago
class-helper.php
1 year ago
class-installer.php
1 year ago
class-json-manager.php
1 year ago
class-kb.php
1 year ago
class-metadata.php
1 year ago
class-post.php
1 year ago
class-rewrite.php
2 years ago
class-settings.php
1 year ago
class-term.php
1 year ago
class-thumbnail-overlay.php
1 year ago
class-update-email.php
3 years ago
class-updates.php
1 year ago
class-user.php
1 year ago
index.php
7 years ago
interface-runner.php
7 years ago
template-tags.php
1 year ago
interface-runner.php
27 lines
| 1 | <?php |
| 2 | /** |
| 3 | * An interface for registering hooks with WordPress. |
| 4 | * |
| 5 | * @since 0.9.0 |
| 6 | * @package RankMath |
| 7 | * @subpackage RankMath\Core |
| 8 | * @author Rank Math <support@rankmath.com> |
| 9 | */ |
| 10 | |
| 11 | namespace RankMath; |
| 12 | |
| 13 | defined( 'ABSPATH' ) || exit; |
| 14 | |
| 15 | /** |
| 16 | * Runner. |
| 17 | */ |
| 18 | interface Runner { |
| 19 | |
| 20 | /** |
| 21 | * Register all hooks to WordPress |
| 22 | * |
| 23 | * @return void |
| 24 | */ |
| 25 | public function hooks(); |
| 26 | } |
| 27 |