PluginProbe ʕ •ᴥ•ʔ
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings / 1.0.247
Rank Math SEO – AI SEO Tools to Dominate SEO Rankings v1.0.247
1.0.271 1.0.271.1 1.0.270 1.0.269 trunk 1.0.216 1.0.217 1.0.218 1.0.219 1.0.220 1.0.221 1.0.222 1.0.223 1.0.224 1.0.225 1.0.226 1.0.227 1.0.227.1 1.0.228 1.0.229 1.0.230 1.0.231 1.0.232 1.0.233 1.0.234 1.0.234.1 1.0.235 1.0.236 1.0.237 1.0.238 1.0.239 1.0.240 1.0.241 1.0.242 1.0.243 1.0.244 1.0.245 1.0.246 1.0.247 1.0.248 1.0.249 1.0.250 1.0.251 1.0.251.1 1.0.252 1.0.252.1 1.0.253 1.0.254 1.0.255 1.0.256 1.0.257 1.0.258 1.0.259 1.0.259.1 1.0.260 1.0.261 1.0.262 1.0.263 1.0.264 1.0.264.1 1.0.265 1.0.266 1.0.266.1 1.0.267 1.0.268
seo-by-rank-math / includes / interface-runner.php
seo-by-rank-math / includes Last commit date
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