Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
video
/
wp-content
/
wp-includes
/
wp-includes
/
wp-includes
/
wp-content
/
themes
/
avril
/
inc
:
custom-header.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php function avril_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'avril_custom_header_args', array( 'default-image' => '', 'default-text-color' => '383E41', 'width' => 2000, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'avril_header_style', ) ) ); } add_action( 'after_setup_theme', 'avril_custom_header_setup' ); if ( ! function_exists( 'avril_header_style' ) ) : function avril_header_style() { $header_text_color = get_header_textcolor(); ?> <style type="text/css"> <?php if ( ! display_header_text() ) : ?> .site-title, .site-description { position: absolute; clip: rect(1px, 1px, 1px, 1px); } <?php else : ?> body .header h4.site-title, body .header p.site-description { color: #<?php echo esc_attr( $header_text_color ); ?>; } <?php endif; ?> </style> <?php } endif;