PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.7.1
Block Animations, Motion & Scroll Effects – Ghost Kit v3.7.1
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / classes / 3rd / class-rank-math.php

class-rank-math.php in Block Animations, Motion & Scroll Effects – Ghost Kit 3.7.1, at classes/3rd/class-rank-math.php

31 lines 565 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Rank Math plugin.
4 *
5 * @package ghostkit
6 */
7
8 /**
9 * GhostKit_3rd_Rank_Math
10 */
11 class GhostKit_3rd_Rank_Math {
12 /**
13 * GhostKit_3rd_Rank_Math constructor.
14 */
15 public function __construct() {
16 add_filter( 'rank_math/researches/toc_plugins', array( $this, 'toc_plugin' ) );
17 }
18
19 /**
20 * Rank Math SEO filter to add our TOC block to the TOC list.
21 *
22 * @param array $plugins TOC plugins.
23 */
24 public function toc_plugin( $plugins ) {
25 $plugins['ghostkit/class-ghost-kit.php'] = 'Ghost Kit';
26 return $plugins;
27 }
28 }
29
30 new GhostKit_3rd_Rank_Math();
31