roboticheart
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Commenters Plug Add-on.Yes, I did that too. You mean on my my-hacks.php page, right?
Forum: Installing WordPress
In reply to: Commenters Plug Add-on.Yes, it is.
Forum: Installing WordPress
In reply to: Commenters Plug Add-on.Well, it asked me to add this code:
“function comment_plugger($before = ”, $limit = 5, $sep = ‘, ‘) {
global $wpdb, $tablecomments, $id;
$request = “SELECT comment_author, comment_author_url, MAX(comment_ID) as comment_ID FROM $tablecomments”;
$request .= ” WHERE comment_post_ID=’$id’ AND comment_approved = ‘1’ GROUP BY comment_author, comment_author_url ORDER BY comment_ID DESC”;
$request .= ($limit > 0) ? ” LIMIT $limit” : ”;
$commenters = $wpdb->get_results($request);if ($commenters) {
$output = ”;
foreach ($commenters as $commenter) {
if (!empty($commenter->comment_author_url)) {
$output[] = ‘comment_author_url . ‘” title=”‘ . $commenter->comment_author . ‘”>’ . $commenter->comment_author . ‘‘;
}
else {
$output[] = $commenter->comment_author;
}
}if (is_array($output)) {
echo $before.implode($sep, $output);
}
} else {
// echo “No one…yet.”;
}
}”to the “my-hacks.php” file and then save it/upload it to my wordpress location. I did.
Forum: Fixing WordPress
In reply to: “Enable Referrers”No, but I’ll try that.