Advertisement
Konark

Untitled

Feb 27th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package blog-wp
  10. */
  11.  
  12. ?>
  13. <!doctype html>
  14. <html <?php language_attributes(); ?>>
  15. <head>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <link rel="profile" href="http://gmpg.org/xfn/11">
  19.  
  20. <?php wp_head(); ?>
  21. </head>
  22.  
  23. <body <?php body_class(); ?>>
  24. <div id="page" class="site">
  25. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'blog-wp' ); ?></a>
  26.  
  27. <header id="masthead" class="site-header">
  28. <div class="site-branding">
  29. <?php
  30. the_custom_logo();
  31. if ( is_front_page() && is_home() ) : ?>
  32. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  33. <?php else : ?>
  34. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  35. <?php
  36. endif;
  37.  
  38. $description = get_bloginfo( 'description', 'display' );
  39. if ( $description || is_customize_preview() ) : ?>
  40. <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
  41. <?php
  42. endif; ?>
  43. </div><!-- .site-branding -->
  44.  
  45. <nav id="site-navigation" class="main-navigation">
  46. <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Primary Menu', 'blog-wp' ); ?></button>
  47. <?php
  48. wp_nav_menu( array(
  49. 'theme_location' => 'menu-1',
  50. 'menu_id' => 'primary-menu',
  51. ) );
  52. ?>
  53. </nav><!-- #site-navigation -->
  54. </header><!-- #masthead -->
  55.  
  56. <div id="content" class="site-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement