Mostrar ultimos comentarios ayuda

Mensajes
78
Puntuación de reacción
0
Como mostrar los últimos comentarios en un thema tienen algún código lo necesito ya que no me ha funcionado los que he probado
 
Mensajes
4
Puntuación de reacción
0
Prueba Agregar esto a tu sidebar.php

<?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 15") ) :
?>
<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; ?>
 
Arriba