您现在正在《抓取网站第N条评论的作者》评论的第4页
今天声儿在上一篇文章中抢第100条评论没抢到,给了我一个灵感,就是抓取网站历史上第N条评论的作者,比如抓取第1000条评论的作者,也就是查询第1000条评论是谁发出的,找出谁是这个幸运之星~ 先上效果,(白色框框里面是鼠标放上去显示的title内容,也可以去小蝴蝶的留言板围观) 把如下代码扔到你想显示的地方即可 <?php $args = array( 'order' => 'ASC',//排序orderby的默认值是comment_date_gmt,所以只需调整order为倒序即可实[.....] 点此返回原文
nth-lucky-reviewer is coded by http://xiaohudie.net. Any posts here is one hundred percent original, so please keep my link so as not to hurt this pretty girl. -
→_→改了一下,改成了评论纪念榜
get_var(“SELECT COUNT(*) FROM $wpdb->comments”);
$max = floor($plnum/100);
$cd = 0;
for($i=0;$i+1 ‘ASC’,
‘number’ => ‘1’,
‘offset’ => $pljs,
‘type’ => ‘comment’,
);
$comments = get_comments($args);
foreach($comments as $comment) :
$epljs = $pljs+1;
echo(‘第’.$pljs.’条:<a>comment_ID).'” title=”‘.mysql2date(‘在Y-m-d说:’,$comment->comment_date). strip_tags($comment->comment_content). ‘”>’.$comment->comment_author.'</a>’);
echo ”;
endforeach;
$cd++;
}
?>