Advertisement
itbatayan

header.php

Oct 15th, 2018
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <html>
  2. <head> <!--start head--->
  3. <!--start title--->
  4. <title><?php wp_title('|',true,'right');?>
  5. <?php bloginfo('name');?></title>
  6. <!--end title--->
  7.  
  8. <!--start call style sheet--->
  9. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/style.css">
  10. <!--end call style sheet--->
  11.  
  12. </head> <!--end head--->
  13.  
  14. <body> <!--start body from here--->
  15. <div id="wrapper"> <!--start wrapper styling--->
  16. <div id="header"> <!--start header section styling--->
  17. <h1><a href="<?php echo get_option('home');?>">
  18. <?php bloginfo('name');?>
  19. </a></h1>
  20. <h3>
  21. <?php bloginfo('description');?>
  22. </h3>
  23. </div> <!--end header section styling--->
  24. <div id="container"> <!--start container--->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement