Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <?php
  2. /**
  3. * The header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="content">
  6. *
  7. * @package plum
  8. */
  9. ?>
  10. <?php get_template_part('modules/header/head'); ?>
  11.  
  12. <body <?php body_class(); ?>>
  13.  
  14. <!-- Google Tag Manager (noscript) -->
  15. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P2QDPC6"
  16. height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  17. <!-- End Google Tag Manager (noscript) -->
  18.  
  19. <div id="page" class="hfeed site">
  20.  
  21. <?php get_template_part('modules/header/jumbosearch'); ?>
  22.  
  23. <header id="masthead" class="site-header single" role="banner">
  24. <div class="layer">
  25. <div class="container masthead-container">
  26.  
  27. <?php get_template_part('modules/header/masthead-inner'); ?>
  28.  
  29. <?php if (get_theme_mod('plum_header_image_style') == 'full-image' ) : ?>
  30. <div id="mobile-header-image">
  31. <img src="<?php header_image(); ?>">
  32. </div>
  33. <?php endif; ?>
  34.  
  35. <div id="search-icon">
  36. <a id="searchicon">
  37. <span class="fa fa-search"></span>
  38. </a>
  39. </div>
  40.  
  41. <?php if(is_single()) : ?>
  42. <div class="in-header-title">
  43. <?php the_title( '<h3 class="entry-title title-font">', '</h3>' ); ?>
  44. </div>
  45. <?php endif; ?>
  46. </div>
  47.  
  48. <div id="mobile-search">
  49. <?php get_search_form(); ?>
  50. </div>
  51.  
  52. </div>
  53. </header><!-- #masthead -->
  54.  
  55. <?php get_template_part('modules/navigation/menu-single'); ?>
  56.  
  57.  
  58.  
  59. <div class="mega-container">
  60.  
  61. <?php if( class_exists('rt_slider') ) {
  62. rt_slider::render('framework/featured-components/slider', 'swiper' );
  63. } ?>
  64.  
  65. <div id="content" class="site-content container">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement