40 lines
811 B
PHP
40 lines
811 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Kadence\Rankmath\Component class
|
||
|
*
|
||
|
* @package kadence
|
||
|
*/
|
||
|
|
||
|
namespace Kadence\Rankmath;
|
||
|
|
||
|
use Kadence\Component_Interface;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Class for adding Tankmath plugin support.
|
||
|
*/
|
||
|
class Component implements Component_Interface {
|
||
|
|
||
|
/**
|
||
|
* Gets the unique identifier for the theme component.
|
||
|
*
|
||
|
* @return string Component slug.
|
||
|
*/
|
||
|
public function get_slug() : string {
|
||
|
return 'rankmath';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Adds the action and filter hooks to integrate with WordPress.
|
||
|
*/
|
||
|
public function initialize() {
|
||
|
add_action( 'wp_enqueue_scripts', array( $this, 'add_styles' ), 60 );
|
||
|
}
|
||
|
/**
|
||
|
* Add some css styles for Restrict Content Pro
|
||
|
*/
|
||
|
public function add_styles() {
|
||
|
wp_enqueue_style( 'kadence-rankmath', get_theme_file_uri( '/assets/css/rankmath.min.css' ), array(), KADENCE_VERSION );
|
||
|
}
|
||
|
}
|