关于对评论者链接的输出控制,之前发过一篇文章,里面讲的是经过评论者评论数量来限制能否输出显现评论者网址,总觉得上面的控制办法不给力,由于总有些忍会刷一些不走心的评论来打破上面的限制,再者,由于博客消亡的比拟快,指不定哪天某些评论数量达标的评论者的网站挂了被搞成了有害人身心安康的网站呢...
而为了“防备”这些状况,同时也加强博客网站的互动性,我们就能够采用本文标题所描绘的方式了:依据评论者最后一次评论时间来决议能否显现评论者链接。比方,评论者的最后一次评论时间间隔当前时间超越了 10 天,就制止显现评论者网站链接。PS:Dragon 主题曾经集成了这个功用哦!话不多说,直接上代码,觉得有用就不要吝啬你的评论和转发哦!
/**
* WordPress根据评论者最后一次评论时间来决定是否显示评论者链接
*/
function lxtx_show_comment_author_link( $return , $author, $comment_ID ){
if ( !is_user_logged_in() ) { // 登录用户无鸭梨
date_default_timezone_set('PRC');
$limit_days = 10; // 天数,代表最后一次评论时间距离今天超过10天的话,则隐藏评论链接
$comment = get_comment( $comment_ID );
if ( !empty($comment->comment_author_email) ) {
$last_comment = get_comments(array(
'author_email' => $comment->comment_author_email,
'number' => '1',
'orderby' => 'comment_date',
'order' => 'DESC',
'status' => 'approve',
'type' => 'comment'
));
if ( (time() - strtotime($last_comment->comment_date)) > $limit_days*24*3600 ) {
$return = $author;
}
}else{
$return = $author;
}
}
return $return;
}
add_filter('get_comment_author_link','lxtx_show_comment_author_link', 10, 3);
当然,本办法仅合适运用 the_author_link()来输出评论者昵称的主题,普通来讲,常规主题都会运用这个函数。
专业提供WordPress主题安装、深度汉化、加速优化等各类网站建设服务,详询在线客服!