[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.119.163.163: ~ $
<?php
/**
 * @package Tutor
 * Setup the WordPress core custom header feature.
 *
 * @uses tutor_header_style()

 */
function tutor_custom_header_setup() {
	add_theme_support( 'custom-header', apply_filters( 'tutor_custom_header_args', array(
		'default-text-color'     => '000000',
		'width'                  => 1600,
		'height'                 => 400,
		'wp-head-callback'       => 'tutor_header_style',
	) ) );
}
add_action( 'after_setup_theme', 'tutor_custom_header_setup' );

if ( ! function_exists( 'tutor_header_style' ) ) :
/**
 * Styles the header image and text displayed on the blog
 *
 * @see tutor_custom_header_setup().
 */
function tutor_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-image: url(<?php echo esc_url(get_header_image()); ?>);
			background-position: center top;
		}
		.logo h1 a { color:#<?php echo esc_html(get_header_textcolor()); ?>;}
	<?php endif; ?>	
	</style>
	<?php
	// If the header text option is untouched, let's bail.
	if ( display_header_text() ) {
		return;
	}

	// If the header text has been hidden.
	?>
    <style type="text/css">
		.logo {
			margin: 0 auto 0 0;
		}

		.logo h1,
		.logo p{
			clip: rect(1px, 1px, 1px, 1px);
			position: absolute;
		}
    </style>
	
    <?php
	
}
endif; // tutor_header_style

Filemanager

Name Type Size Permission Actions
custom-header.php File 1.47 KB 0644
customizer.php File 11.1 KB 0644
extras.php File 515 B 0644
template-tags.php File 1.56 KB 0644