我在函数中使用以下代码。php显示“我的主题”中的顶级评论者:
function top_comment_authors($amount = 5){
global $wpdb;
$results = $wpdb->get_results(\'
SELECT
COUNT(comment_author_email) AS comments_count, comment_author_email, comment_author, comment_author_url
FROM
\'.$wpdb->comments.\'
WHERE
comment_author_email != "" AND comment_type = "" AND comment_approved = 1
GROUP BY
comment_author_email
ORDER BY
comments_count DESC, comment_author ASC
LIMIT \'.$amount
);
$output = "<ul>";
foreach($results as $result){
$output .= "<li>".get_avatar($result->comment_author_email, 30).\' <p>\'.(($result->comment_author_url) ? "<a href=\'".$result->comment_author_url."\'>" : "").$result->comment_author.(($result->comment_author_url) ? "</a>" : "")." (".$result->comments_count.")</p></li>";
}
$output .= "</ul>";
echo $output;
}
很好,但我想
exclude 我自己,又名
admin/著者这有可能吗?如果是这样,我会怎么做?我必须以何种方式修改上述代码?
提前非常感谢!:)