Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/12/2011, 17:38
juancarsantana
 
Fecha de Ingreso: septiembre-2011
Ubicación: Gran Canaria
Mensajes: 134
Antigüedad: 12 años, 7 meses
Puntos: 1
Añadir Fecha

Buenas a todos.
Me gustaría añadir fecha y hora a los últimos comentarios que tengo añadido en mi sidebar.
Lo tengo así:

<?php
if( $comments = $wpdb->get_results(
"SELECT comment_author, comment_author_url,
comment_ID, comment_post_ID
FROM $wpdb->comments
WHERE comment_approved = '1'
ORDER BY comment_date_gmt DESC LIMIT 8") ) :
?>
<li><h2> Últimos comentarios </h2>
<ul>
<?php
global $comment;
foreach ($comments as $comment) {
echo '<li><b>'
. get_comment_author_link() . '</b> - '
. '<a href="' . get_permalink($comment->comment_post_ID)
. '#comment-' . $comment->comment_ID . '">'
. get_the_title($comment->comment_post_ID)
. '</a></li>';
}
?>
</ul>
</li>
<?php endif; ?>

Gracias.