Tagged Questions
0
votes
1answer
43 views
Comment Function
How would I make this Function display only the latest 5 comments?
function showLatestComments() {
global $wpdb;
$sql = "
SELECT DISTINCT comment_post_ID, comment_author, comment_date_gmt, ...
0
votes
1answer
168 views
WP Custom Comment Callback Not Responding
I have a client site that has requested a custom comment format for posts of a specific category.
In my loop template, I have this:
<div id="gallery-commentlist">
<ul ...