Created
July 8, 2019 12:48
-
-
Save TanvirAmi/cfc54c63137037325c1eb0cbf127869e to your computer and use it in GitHub Desktop.
custom header.php for biancaa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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="http://gmpg.org/xfn/11"> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> | |
<div id="page" class="hfeed site"> | |
<?php if(is_home()): ?> | |
<header id="masthead" class="site-header" role="banner"> | |
<div class="container"> | |
<!-- Mobile Menu. --> | |
<label class="open-toggle-menu" for="toggle-menu" onclick><i class="genericon genericon-menu"></i></label> | |
<div class="site-branding"> | |
<?php biancaa_site_branding(); ?> | |
</div> | |
</div><!-- .container --> | |
</header><!-- #masthead --> | |
<?php endif; ?> | |
<?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?> | |
<div id="content" class="site-content"> | |
<div class="container"> | |
<?php biancaa_featured_content(); // Get the featured posts. ?> | |
<?php biancaa_featured_text(); // Get the featured text. ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment