Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/11/2011, 22:06
brunocanalla
 
Fecha de Ingreso: septiembre-2008
Mensajes: 34
Antigüedad: 16 años, 2 meses
Puntos: 0
Respuesta: Problema con wp_head()

Hola rogertm, ahi te paso el codigo:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5.  
  6.     <meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>;
  7.       charset=<?php bloginfo('charset'); ?>" />
  8.     <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
  9.    
  10.     <title><?php bloginfo('name'); ?> | <?php wp_title(); ?></title>
  11.  
  12.     <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>" />
  13.    
  14. <?php wp_head(); ?>
  15. </head>
  16.  
  17.  
  18. <!-- wrap starts here -->
  19. <div id="wrap">
  20.  
  21.     <!--header -->
  22.     <div id="header">          
  23.                
  24.             <h1 id="logo-text"><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>      
  25.         <p id="slogan"><?php bloginfo('description'); ?></p>   
  26.        
  27.         <div  id="nav">
  28.             <ul>
  29.                 <li class="first" id="current"><a href="<?php bloginfo('url'); ?>" title="Home">Home</a></li>
  30.                 <?php wp_list_pages('title_li='); ?>
  31.             </ul>      
  32.         </div> 
  33.        
  34.         <div id="header-image"></div>
  35.                        
  36.     <!--header ends-->                 
  37.     </div>

Desde ya gracias por responder
Saludos!