• I used that plugin now in replacement for “Get recent comments” which is no more working with WordPress 5.7.
    I like shortcodes that allow to customize the output easily.
    Just one thing missing IMO (will create a topic in Support forum for that : an option to filter comments for the blog authors (“Exclude comments by blog authors (your own comments)”.)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Little Package

    (@littlepackage)

    @pledisque Thank you so much for taking the time to write feedback and a nice review. I appreciate it, and will look at getting this done as soon as I can. If you have more input, or code, please feel free to share it.

    Thread Starter pledisque

    (@pledisque)

    @littlepackage,
    Actually, I have a workaround, but I am not the author of it, as I have no dev skills. On the french WP forum (here), PhiLyon helped me and found that function to add in the function.php of a child theme :

    function ra_recent_comments_less_author( $array ) {
    	global $post;
    	$array['user_id'] = !$post->post_author;
    	return $array;
    }
    add_action( 'widget_comments_args', 'ra_recent_comments_less_author' );

    With that function AND your widget, I have exactly what I was looking for ! ??
    Hope that helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘almost perfect !’ is closed to new replies.