🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
duzhbywe
/
appmen.com.ng
/
wp-content
/
themes
/
blog-rich-lite
✏️
Editing: header.php
<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Blog Rich */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo('charset'); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php wp_body_open(); ?> <div id="page" class="site"> <div class="moving-shape"></div> <a class="skip-link screen-reader-text" href="#primary"><?php esc_html_e('Skip to content', 'blog-rich-lite'); ?></a> <?php do_action('blog_rich_mobile_menu'); ?> <?php $blog_rich_header_style = get_theme_mod('blog_rich_header_style', 'style1'); ?> <header id="masthead" class="site-header ax-h<?php echo esc_attr($blog_rich_header_style); ?>"> <?php if (has_header_image()) : ?> <div class="header-img"> <?php the_header_image_tag(); ?> </div> <?php endif; ?> <?php if ($blog_rich_header_style == 'style1') { do_action('blog_rich_header_style_one'); } else { do_action('blog_rich_header_style_two'); } ?> </header><!-- #masthead --> <?php if (is_home() || is_front_page()) { do_action('blog_rich_hbanner'); } ?>
💾 Save Changes
❌ Cancel