X7ROOT File Manager
Current Path:
/home/freights/public_html/wp-content/themes/newsmash/inc
home
/
freights
/
public_html
/
wp-content
/
themes
/
newsmash
/
inc
/
??
..
??
admin
??
class-wp-bootstrap-navwalker.php
(21.05 KB)
??
custom-header.php
(1.39 KB)
??
customizer
??
extras.php
(30 KB)
??
template-tags.php
(31.5 KB)
??
widgets
??
wptt-webfont-loader.php
(16.8 KB)
Editing: custom-header.php
<?php /** * Sample implementation of the Custom Header feature * * @link https://developer.wordpress.org/themes/functionality/custom-headers/ * * @package NewsMash */ function newsmash_custom_header_setup() { add_theme_support( 'custom-header', apply_filters( 'newsmash_custom_header_args', array( 'default-image' => '', 'default-text-color' => '161C2D', 'width' => 1920, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'newsmash_header_style', ) ) ); } add_action( 'after_setup_theme', 'newsmash_custom_header_setup' ); if ( ! function_exists( 'newsmash_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see newsmash_custom_header_setup(). */ function newsmash_header_style() { $header_text_color = get_header_textcolor(); // If we get this far, we have custom styles. Let's do this. ?> <style type="text/css"> <?php if ( ! display_header_text() ) : ?> body header .site--logo .site--title, body header .site--logo .site--description { position: absolute; clip: rect(1px, 1px, 1px, 1px); } <?php else : ?> body header .site--logo .site--title, body header .site--logo .site--description { color: #<?php echo esc_attr( $header_text_color ); ?>; } <?php endif; ?> </style> <?php } endif;
Upload File
Create Folder