回复评论时@原评论者
在回复 别人评论的时候,可以用此函数@别人,明确回复的是谁。
将下列函数放到你主题的functions.php即可。
// 评论@回复
function idevs_comment_add_at( $comment_text, $comment = '') {
if( $comment->comment_parent > 0) {
$comment_text = '@<a href="#comment-' . $comment->comment_parent . '">'.get_comment_author( $comment->comment_parent ) . '</a> ' . $comment_text;
}
return $comment_text;
}
add_filter( 'comment_text' , 'idevs_comment_add_at', 20, 2);