代码源自露兜博客,加入functions.php
// 评论添加@ add_filter( 'get_comment_text' , 'comment_add_at', 20, 2); // 添加过滤器,加入以下值 function comment_add_at( $get_comment_text, $comment = '') { if( $comment->comment_parent > 0) { $get_comment_text = '<a href="#comment-' . $comment->comment_parent . '">@'.get_comment_author( $comment->comment_parent ) . '</a> <br />' . $get_comment_text; } return $get_comment_text; // 返回添加@的函数,名称不能自定义 }
在评论列表回调函数中,评论主体内容调用输出get_comment_text();
函数即可,
但若要显示评论表情就必须用convert_smilies(get_comment_text());
包裹住,否则表情不会在评论中显示出来。
本站文章除注明转载/出处外,均为本站原创或翻译。若要转载但请务必注明出处,尊重他人劳动成果。
转载请注明出处链接 : https://www.inlojv.com/4578.html