📁
SKYSHELL MANAGER
PHP v7.4.33
Create
Create
Path:
root
/
home
/
shirleywagnerar0
/
public_html
/
Name
Size
Perm
Actions
📁
image
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
old
-
0755
🗑️
🏷️
🔒
📁
b6d9ba
-
0755
🗑️
🏷️
🔒
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
beta
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
beta2
-
0755
🗑️
🏷️
🔒
📄
wp-blog-header.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
about.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
classwithtostring.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.18 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-log1n.php
1.93 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.42 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
style.php
13.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
click.php
2.03 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
radio.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
pages.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
options.php
0 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
networks.php
2.03 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
mah.php
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
item.php
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
google15987b49ad28d40a.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
1.47 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
filefuns.php
5.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
ex.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: class-wp-block-template.php
<?php /** * Blocks API: WP_Block_Template class * * @package WordPress * @since 5.8.0 */ /** * Class representing a block template. * * @since 5.8.0 */ class WP_Block_Template { /** * Type: wp_template. * * @since 5.8.0 * @var string */ public $type; /** * Theme. * * @since 5.8.0 * @var string */ public $theme; /** * Template slug. * * @since 5.8.0 * @var string */ public $slug; /** * ID. * * @since 5.8.0 * @var string */ public $id; /** * Title. * * @since 5.8.0 * @var string */ public $title = ''; /** * Content. * * @since 5.8.0 * @var string */ public $content = ''; /** * Description. * * @since 5.8.0 * @var string */ public $description = ''; /** * Source of the content. `theme` and `custom` is used for now. * * @since 5.8.0 * @var string */ public $source = 'theme'; /** * Origin of the content when the content has been customized. * When customized, origin takes on the value of source and source becomes * 'custom'. * * @since 5.9.0 * @var string */ public $origin; /** * Post ID. * * @since 5.8.0 * @var int|null */ public $wp_id; /** * Template Status. * * @since 5.8.0 * @var string */ public $status; /** * Whether a template is, or is based upon, an existing template file. * * @since 5.8.0 * @var bool */ public $has_theme_file; /** * Whether a template is a custom template. * * @since 5.9.0 * * @var bool */ public $is_custom = true; /** * Author. * * A value of 0 means no author. * * @since 5.9.0 * @var int */ public $author; /** * Post types. * * @since 5.9.0 * @var array */ public $post_types; /** * Area. * * @since 5.9.0 * @var string */ public $area; }
Save