Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/08/2012, 08:58
Avatar de memoadian
memoadian
Colaborador
 
Fecha de Ingreso: junio-2009
Ubicación: <?php echo 'México'?>
Mensajes: 3.696
Antigüedad: 14 años, 10 meses
Puntos: 641
Respuesta: Posts de un blog en página estática

ya, creo que no tienes esa función en tu theme XD solo pon esto:

Código PHP:
Ver original
  1. <div class="posts-populares">
  2.             <?php $my_query = new WP_Query('showposts=6&orderby=comment_count'); ?>
  3.             <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
  4.                 <div class="article">
  5.                     <h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
  6.                     <?php the_content();  ?>
  7.                 </div>
  8.             <?php endwhile; ?>
  9.         </div>