Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/09/2009, 23:06
ForosAdvance
 
Fecha de Ingreso: enero-2009
Mensajes: 59
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: Mensajes en la página principal!!!

En mi archivo index.php del tema me sale esto:

Cita:
<?php get_header(); ?>



<div id="content">



<?php if (have_posts()) : ?>



<?php while (have_posts()) : the_post(); ?>



<div class="post" id="post-<?php the_ID(); ?>">

<div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div>

<div class="title">

<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>

<div class="postdata"><SPAN class="category"><?php the_category(', ') ?></SPAN> <span class="comments"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span></div>

</div>

<div class="entry">

<?php the_content('Continue reading &raquo;'); ?>



<p><?php the_tags('Tags: ', ', ', '<br />'); ?></p>

</div><!--/entry -->



</div><!--/post -->



<?php endwhile; ?>



<div class="page-nav"> <span class="previous-entries"><?php next_posts_link('Previous Entries') ?></span> <span class="next-entries"><?php previous_posts_link('Next Entries') ?></span></div><!-- /page nav -->



<?php else : ?>



<h2>Not Found</h2>

<p>Sorry, but you are looking for something that isn't here.</p>



<?php endif; ?>



</div><!--/content -->





</div><!--/left-col -->



<?php

$current_page = $post->ID; // Hack to prevent the no sidebar error

include_once("sidebar-right.php");

//get_sidebar();

?>



<?php get_footer(); ?>