01/09/2010, 15:14
|
| Colaborador | | Fecha de Ingreso: julio-2009 Ubicación: De vuelta al trono
Mensajes: 1.698
Antigüedad: 15 años, 6 meses Puntos: 137 | |
Respuesta: Espacio en blanco inexplicable
Código:
<?php get_header(); ?>
<div id="coreContent" class="hfeed">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h3 class="entry-title" align="left" style="color:#333333"><span style="font-size:15px; margin-right:8px; font-weight:bold; color:#F00"><?php the_date('d/m/Y'); ?></span> <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="post hentry">
<div class="postContent">
<div class="entry-content-noticias">
<?php the_excerpt('Read the rest of this entry »'); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<div class="pageNav">
<div class="prev"><?php next_posts_link('« Older') ?></div>
<div class="next"><?php previous_posts_link('Newer»') ?></div>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
Última edición por alexk; 01/09/2010 a las 15:15
Razón: fck code
|