13/11/2009, 21:24
|
| | Fecha de Ingreso: octubre-2009
Mensajes: 36
Antigüedad: 15 años, 1 mes Puntos: 1 | |
Respuesta: Error del sidebar OJALA PUEDAN AYUDARME, AQUI ESTA EL CODIGO
<?php get_header(); ?>
<div id="body"> <!-- Body [sidebar, posts] -->
<div id="content"> <!-- Contents -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postMain png"> <!-- Post Block Wrapper -->
<div class="post"> <!-- Post Contents -->
<h2><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<h3><?php the_time('F jS, Y') ?> | By <?php the_author() ?></h3>
<?php the_content(); ?>
<div class="postMeta"><?php the_tags('Etiquetas: ', ', ', '<br />'); ?> Publicado en: <?php the_category(', ') ?> </div>
</div> <!-- / Post Contents End -->
</div> <!-- / Post Block Wrapper End -->
<div style="clear:both">
</div><div class="postFoot png"></div>
<?php endwhile; ?> <!-- / Post Footer for image -->
<?php comments_template(); ?>
<?php else : ?>
<?php endif; ?>
</div> <!-- / Contents End -->
<?php get_sidebar(); ?>
<div class="clr"></div>
</div> <!-- / Body [sidebar, posts] End -->
<?php get_footer(); ?>
</div> <!-- / Main Container End -->
</div> <!-- / Inner Wrapper [contains Floor Image] End -->
</div> <!-- / Outermost Block End -->
</body>
</html> |