X

Mostrar comentarios en la administración sólo en las publicaciones de los autores

Snippets by IsItWP

Puede tener varios autores escribiendo contenidos en su blog. Cada entrada del blog tiene una sección de comentarios donde los usuarios pueden dejar un comentario después de leer la entrada. Normalmente, todos los comentarios son visibles para todo el mundo con los permisos para verlos en su área de administración de WordPress.

Instrucciones: Para mostrar los comentarios a las propias entradas de los autores y ocultar los demás comentarios, puedes añadir el siguiente código al archivo functions.php de tu tema de WordPress.

function wps_get_comment_list_by_user($clauses) {
        if (is_admin()) {
                global $user_ID, $wpdb;
                $clauses['join'] = ", ".$wpdb->base_prefix."posts";
                $clauses['where'] .= " AND ".$wpdb->base_prefix."posts.post_author = ".$user_ID." AND ".$wpdb->base_prefix."comments.comment_post_ID = ".$wpdb->base_prefix."posts.ID";
        };
        return $clauses;
};
if(!current_user_can('edit_others_posts')) {
add_filter('comments_clauses', 'wps_get_comment_list_by_user');
}

También puedes disfrutar añadiendo la autoría de Google a WordPress.

Comentarios   Deja una respuesta

  1. Any way this can used for frontend comments only?

  2. Hello! Thank you so much for this code! It worked beautifully on my site, except for one thing: I am using multiple authors plugin and it doesn’t filter for the co-authors. Can you help me?

    1. How are you designating co-authors? For example, are you using user roles?

      1. Thank you for your answer. I am using the Co-Authors Plus plugin. It adds a custom field where you can add as many authors as you want.

  3. Hello, this worked nicely. But is there any way to hide total comment count/approved/trash too? All the numbers should only show figures by the author.

  4. Great solution. Today solve my problem . Thank you so much.

    1. Glad it helped 🙂

  5. Hello, In admin the count of comments still show all comments not filtered comments.

  6. Alexander Edelmann noviembre 7, 2018 en 2:50 pm

    Hi Kevin,

    Thank you for your great efforts and support!

    I am wondering if I can as Administrator write a comment and make it visible JUST for specific user or user role (author, editor…etc.). Comments are disable normally and no one can write one.

    I am looking forward to your answer!

    Thank you from Vienna,
    Alexander Edelmann

  7. please help me
    you are explain how show the comments to the authors own posts
    , I want filter the notify of comments for owner post ? how

  8. Gulshan Kumar enero 9, 2017 en 8:47 am

    You made my day! Thank you so much @wpsnipp:disqus for this valuable tutorial.
    It would be great if we could fix comment counts for contributor profile. Thanks

  9. work in localhost but don’t work in host ???

  10. If the database preifx is something else than wp_ this function won’t work. You should replace wp_ by “.$wpdb->base_prefix.” in join and where clause to fix it.

    1. I meant database prefix

      1. For the life of me I cannot make this work with a different db prefix (my website’s is wp_spanh) I am not at all php literate, so could you please give me the above function with my db prefix in place, so that I can copy / paste it into my functions.php file? I would be eternally grateful!

      2. For the life of me I cannot make this work with a different db prefix (my website’s is wp_spanh) I am not at all php literate, so could you please give me the above function with my db prefix in place, so that I can copy / paste it into my functions.php file? I would be eternally grateful!

        1. Hi Ismael
          I just updated the snippet to work with any prefix should work fine I tested things on the most recent version of wordpress.

  11. How to Filter Comments in the WordPress Admin for Quicker Moderation - WPMU.org julio 26, 2012 en 9:45 am

    […] for this useful snippet goes to Kevin Chard of […]

  12. Where do I copy this code ?

    1. Sorry about that, I update the post. Just add this snippet to the functions.php of your wordpress theme.

      1. But, On pasting the code in theme’s folder/functions.php, the whole comment is disappeared. No comments is visible now. Even, the logged in user’s.

  13. Maximiliano Sánchez julio 12, 2012 en 5:48 pm

    Hey, thanks for your amazing site!

    1. No problem enjoy the wordpress code snippets

  14. Ah! 🙂 Thanks .. another great snippet! Very much similar to author post restriction!
    I’m loving your site!!! 🙂

    1. Glad to hear it, lots of stuff on the way 🙂

  15. This is pretty cool, thanks for sharing.

    1. No problem Andrew,

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!