WordPress 评论回复添加 @
WordPress 评论回复默认是没有添加 @ 的,有时可能出现搞错评论,回复评论搞错对象。为 WordPress 添加 @ 后可以避免出现此类情况。
把以下代码添加到当前主题的 functions.php 文件中即可。
function comment_add_at( $comment_text, $comment = '') {
if( $comment->comment_parent > 0) {
$comment_text = '@<a class="comment-at" href="#comment-' . $comment->comment_parent . '">'.get_comment_author( $comment->comment_parent ) . '</a>: ' . $comment_text;
}
return $comment_text;
}
add_filter( 'comment_text' , 'comment_add_at', 10, 2);
『 转载请注明来源及链接 』