J'utilise ce qui suit pour obtenir la date de chaque message:
while (have_posts()) : the_post();
//some html
<li class="icon-date"><?php the_date('Y-m-d');?></li>
<li class="icon-time"><?php the_date('H:i:s');?></li>
Cependant, je ne reçois que la date du premier message, pourquoi?