X

Cómo mostrar el recuento de comentarios junto al nombre de usuario en WordPress

Snippets by IsItWP

¿Quieres mostrar el recuento de comentarios de cada usuario junto a su nombre de usuario? Mostrar el recuento de comentarios de cada usuario puede animarles a publicar más comentarios. Veamos cómo mostrar el recuento de comentarios de cada usuario.

Instrucciones:

1. Añade este código al archivo functions.php de tu tema o en un plugin específico del sitio:

<?
function commentCount() {
    global $wpdb;
    $count = $wpdb->get_var('SELECT COUNT(comment_ID) FROM ' . $wpdb->comments. ' WHERE comment_author_email = "' . get_comment_author_email() . '"');
    echo $count . ' comments';
}
?>

2. A continuación, añada este fragmento de código al archivo comments.php en el que desea mostrar el recuento de comentarios

<?php 
            commentCount(); 
?>

Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.

Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Los mejores constructores de páginas de WordPress (Comparados).

Comentarios   Deja una respuesta

  1. How do we add this into Users panel? Can we have a new column next to Username, Name, Email, Posts, that would list a comment count, and which you can sort by?

  2. get_comment_author_email() this function not working current user email not find

  3. I allow anonymous posting and end up with user_id = 0 in the comment table, how do I omit the return of this value?

    if (user_id > 0) echo commentCount();

    I’m guessing something along these lines would work or would it be better to edit the sql queries?

    1. Yes, you may be able to use something like that if it’s consistent. The important thing is to test it out to make sure everything is working.

  4. thanks for this.

  5. Add the first snippet to the functions.php of your wordpress theme, then add the second snippet in the location you want to display the comment count. The place you may want to add it would be beside the users name “comment_author()” you should see that line within your comments.php.

  6. Hi!
    I want to display name of the user who is currently logged in and after logs out his name should be with the comment.
    i’ve used session but when i logout the session destroys an dthe name and the comment disappears because of unsetting the session.
    Thank You!

  7. mlmleadsgenerationblog mayo 16, 2013 en 10:46 pm

    Hi Kevin, thank you for this tutorial 🙂

    I was wondering…do you know how to add the comment for each user as a sortable column in the Admin panel (the user list)?

    Thank you in advance for your help,
    Roselle

  8. How would you use Transients API with this to cache it? #wordpress

    1. Sent you a link to a great post about this via twitter.

  9. BlackBerry Empire abril 12, 2011 en 10:25 pm

    is this only for disqus system?

    1. No this is not just for disqus, should work with any wordpress themes.

  10. BlackBerry Empire abril 12, 2011 en 10:24 pm

    I dont see comment author on either comments.php

  11. BlackBerry Empire abril 12, 2011 en 10:16 pm

    I am trying to get it in the skeleton theme of wptouch

    1. I have never used that theme but if you add the commentCount() within the comment loop comments should be displayed within a unordered list. It will work, I would have to see the theme file to be sure. Use http://pastebin.com/ to post your code if you wish,

  12. BlackBerry Empire abril 12, 2011 en 10:13 pm

    I dont see comment_author

  13. BlackBerry Empire abril 12, 2011 en 8:52 pm

    where do we add it?

    1. Add the first snippet to the functions.php of your wordpress theme, then add the second snippet in the location you want to display the comment count. The place you may want to add it would be beside the users name “comment_author()” you should see that line within your comments.php.

Añadir un comentario

Nos alegra que haya decidido dejar un comentario. Tenga en cuenta que todos los comentarios se moderan de acuerdo con nuestra política de privacidad , y que todos los enlaces son nofollow. NO utilice palabras clave en el campo del nombre. Tengamos una conversación personal y significativa.

WordPress Launch Checklist

La lista definitiva para lanzar WordPress

Hemos recopilado todos los elementos esenciales de la lista de comprobación para el lanzamiento de su próximo sitio web de WordPress en un práctico ebook.
Sí, envíeme el ¡gratuito!