Advertisement
demetriusPop

header xml

Dec 25th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <?php
  2. header("Content-type: text/xml");
  3. ?>
  4. <!DOCTYPE html>
  5. <html><head>
  6.  
  7. <title>
  8. <?php
  9. wp_title('-', true, 'right');
  10. bloginfo( 'name' );
  11. ?>
  12. </title>
  13. <meta name="viewport" content="width=device-width, initial-scale = 1.0">
  14. <?php wp_head(); ?>
  15.  
  16. </head>
  17.  
  18. <body>
  19. <div class="container clearfix">
  20. <header>
  21. <div class="grid_12 omega none">
  22. <hgroup>
  23. <h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
  24. <h2><?php bloginfo( 'description'); ?></h2>
  25. </hgroup>
  26. </div>
  27. <div class="grid_12 omega">
  28. <span class="main-nav-img">
  29. <img src="<?php echo get_bloginfo('template_directory'); ?>/images/hand.png" width="280" height="280" alt="Some alt text" border="0" />
  30. </span>
  31. <nav>
  32. <?php
  33. $args = array(
  34. 'menu' => 'main-menu',
  35. 'echo' => false
  36. );
  37. echo strip_tags (wp_nav_menu( $args), '<a>' );
  38. ?>
  39.  
  40. </nav>
  41. <!-- <span class="main-nav-img">
  42. <img src="<?php //echo get_bloginfo('template_directory'); ?>/images/shadow5.png" alt="Some alt text" border="0" />
  43. </span>-->
  44. </div>
  45. </header>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement