根据评论者最后一次评论时间来决定是否显示评论者链接,代码加入主题函数functions.php文件:
/**
* WordPress 根据评论者最后一次评论时间来决定是否显示评论者链接 - 龙笑天下
* http://www.ilxtx.com/display-or-hide-comment-author-link-according-to-last-comment-date.html
* update:2019-5-29
*/
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['0']->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()来输出评论者昵称的主题,一般来讲,标准主题都会使用这个函数。
欢迎访问秀主题博客,分享简单实用WP教程