Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php
  2. /**
  3. * Classic header.
  4. *
  5. * @package the7
  6. * @since 3.0.0
  7. */
  8.  
  9. // File Security Check
  10. if ( ! defined( 'ABSPATH' ) ) { exit; }
  11. ?>
  12.  
  13. <div <?php presscore_header_class( 'masthead classic-header' ); presscore_header_inline_style(); ?> role="banner">
  14.  
  15. <?php presscore_get_template_part( 'theme', 'header/top-bar' ); ?>
  16.  
  17. <header class="header-bar">
  18.  
  19. <?php presscore_get_template_part( 'theme', 'header/branding' ); ?>
  20.  
  21. <nav class="navigation">
  22.  
  23. <?php presscore_get_template_part( 'theme', 'header/primary-menu' ); ?>
  24.  
  25. <?php presscore_render_header_elements( 'near_menu_right' ); ?>
  26.  
  27. </nav>
  28. <div class="custom-bottom-bar">This is custom information, visible on all pages.</div>
  29. </header>
  30.  
  31. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement