Thank you — what a great plugin!
I have another question: the default output for the plugin looks like:
Excerpt excerpt… [Author]
And I’d like it to look like:
Author: Post Title, Comment Date in m/d format
With some php stumbling and trial and error, I’m partway there — by doing
echo “
- $comment->comment_author: “;
echo ”
get_permalink($comment->comment_post_ID) .
“\”>$comment_short, $comment->comment_date(‘m/d’)
\n”;
I’ve got it to look like
Author: excerpt…, long date(‘m/d’)
So my questions are:
1. How do I get it to link to the post title rather than (or in addition to) the excerpt?
2. What am I gettting wrong in trying to call a different date format?
Thanks very much for any guidance anyone might provide.