Advertisement
Guest User

Header.php

a guest
Aug 22nd, 2012
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.22 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  3.  
  4. <head profile="http://gmpg.org/xfn/11">
  5. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  6.  
  7. <title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
  8.  
  9. <!-- <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> -->
  10. <link rel="stylesheet" href="<?php bloginfo('url') ?>/wp-content/themes/layout/style.css" type="text/css" media="screen" />
  11. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  12.  
  13. <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
  14.  
  15. <?php wp_head(); ?>
  16. </head>
  17. <body <?php body_class(); ?>>
  18.  
  19. <div class="header">
  20.  
  21.     <div id="titulo">
  22.     <a href="<?php echo home_url( '/' ); ?>" rel="home"><?php bloginfo('name') ?></a>
  23.     <br />
  24.    
  25.         <div id="descricao">
  26.         "<?php bloginfo('description') ?>"
  27.         </div>
  28.         <br />
  29.        
  30.         <div id="busca">
  31.         Formulário de pesquisa
  32.         </div>
  33.        
  34.     </div>
  35.  
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement