| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www/wp-content/plugins/seo-by-rank-math/includes/helpers/ |
Upload File : |
<?php
/**
* The Editor helpers.
*
* @since 1.0.9
* @package RankMath
* @subpackage RankMath\Helpers
* @author Rank Math <support@rankmath.com>
*/
namespace RankMath\Helpers;
use RankMath\Helper;
defined( 'ABSPATH' ) || exit;
/**
* Editor class.
*/
class Editor {
/**
* Can add editor.
*
* @return bool
*/
public static function can_add_editor() {
return Helper::has_cap( 'onpage_general' ) ||
Helper::has_cap( 'onpage_advanced' ) ||
Helper::has_cap( 'onpage_snippet' ) ||
Helper::has_cap( 'onpage_social' );
}
/**
* Add option to Lock Modified date in the editor.
*
* @return bool
*/
public static function can_add_lock_modified_date() {
return apply_filters( 'rank_math/lock_modified_date', true );
}
}