Advertisement
webrur

Untitled

Apr 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 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 Factorian
  10. */
  11.  
  12. ?>
  13.  
  14. <!DOCTYPE html>
  15. <html <?php language_attributes(); ?>>
  16. <head>
  17. <meta charset="<?php bloginfo( 'charset' ); ?>">
  18. <meta name="viewport" content="width=device-width, initial-scale=1">
  19. <link rel="profile" href="http://gmpg.org/xfn/11">
  20.  
  21. <?php wp_head(); ?>
  22. </head>
  23.  
  24. <body <?php body_class(); ?>>
  25. <div id="page" class="site">
  26.  
  27. <div class="header-area">
  28. <div class="container">
  29. <div class="row">
  30. <div class="col-md-4">
  31. <div class="site-logo"><a href="<?php echo esc_url(home_url('/')) ?>"><?php bloginfo('name') ?></a></div>
  32. </div>
  33.  
  34. <div class="col-md-8">
  35.  
  36. <div class="header-right-menu main-menu">
  37. <?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu' ) ); ?>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. </div>
  43.  
  44. // Footer Codes
  45.  
  46. <?php
  47. /**
  48. * The template for displaying the footer
  49. *
  50. * Contains the closing of the #content div and all content after.
  51. *
  52. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  53. *
  54. * @package Factorian
  55. */
  56.  
  57. ?>
  58.  
  59. <footer id="colophon" class="site-footer" role="contentinfo">
  60. <div class="container">
  61. <?php if(is_active_sidebar('factorian-footer-widgets')) : ?>
  62. <div class="row">
  63. <?php dynamic_sidebar('factorian-footer-widgets'); ?>
  64. </div>
  65. <?php endif; ?>
  66. </div>
  67.  
  68. <div class="row">
  69. <div class="col-md-12">
  70. <div class="factorian-footer-bottom">
  71. <div class="container">
  72. <?php esc_html_e('© 2016 Your Site Name.','factorian-webrur') ?>
  73. </div>
  74. </div>
  75. </div>
  76. </div>
  77.  
  78. </footer><!-- #colophon -->
  79. </div><!-- #page -->
  80.  
  81. <?php wp_footer(); ?>
  82.  
  83. </body>
  84. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement