Advertisement
sixfootjames

WP - Header

May 10th, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.13 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
  6. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
  7. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
  8. <!--[if IE 7]>
  9. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/ie7.css" media="screen" type="text/css" />
  10. <![endif]-->
  11. <?php wp_enqueue_script("jquery"); ?>
  12. <?php wp_head(); ?>
  13. </head>
  14. <body>
  15. <div class="wrapper">
  16.   <div class="splash-bottom">
  17.     <div class="splash-top">
  18.       <div class="header">
  19.             <?php query_posts('category_name=book-now-button&posts_per_page=1'); ?>
  20.             <?php while (have_posts()) : the_post(); ?>
  21.                     <div class="book-now"><?php the_content() ?></div>
  22.             <?php endwhile;?>
  23.         <a class="logo" href="/"></a>
  24.         <div class="login"><?php wp_login_form( $args ); ?></div>
  25.         <div class="menu">
  26.           <?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?>
  27.         </div>
  28.       </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement