Advertisement
Guest User

header.php

a guest
Feb 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <?php
  2. /** * The header for our theme. *
  3. * This is the template that displays all of the <head> section and everything up until <div id="content"> *.
  4. *
  5. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials **/?>
  6. <!DOCTYPE html>
  7.  
  8. <html class="no-js" <?php language_attributes() ?>>
  9.  
  10. <head>
  11. <title><?php wp_title( '|', true, 'right' ); ?></title>
  12. <meta name="viewport" content="width=device-width,initial-scale=1">
  13. <?php wp_head(); ?>
  14. </head>
  15.  
  16. <body <?php body_class(); ?>>
  17. <div class="o-overlay js-overlay"></div>
  18.  
  19. <?php do_action('rt_side_panel') ?>
  20. <?php do_action('rt_before_main') ?>
  21.  
  22.  
  23. <div id="main" class="<?php rt_main_class()?>">
  24.  
  25. <?php
  26.  
  27. /*=================================================
  28. * HEADER
  29. /*================================================= */
  30. do_action('rt_header');
  31.  
  32. /*=================================================
  33. * PAGET TITLE
  34. /*================================================= */
  35. do_action('rt_page_title');
  36.  
  37. /*=================================================
  38. * FEATURE POST
  39. /*================================================= */
  40. do_action('rt_feature_posts');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement