久以前有朋友反应,回复了却没有接到通知!今天小编分享一款关于WordPress回复评论自动添加@评论者的代码,以后大家留言的时候,只有被回复就会自动@你了哟,在这里也感谢大家的支持
教程开始将一下代码添加到当前模板函数 (functions.php)即可实现回复自动@评论者!
function ludou_comment_add_at( $commentdata ) {
if( $commentdata['comment_parent'] > 0) {
$commentdata['comment_content'] = '@<a href="#comment-' . $commentdata['comment_parent'] . '">'.get_comment_author( $commentdata['comment_parent'] ) . '</a> ' . $commentdata['comment_content'];
}
return $commentdata;
}
add_action( 'preprocess_comment' , 'ludou_comment_add_at', 20);
以上代码会直接将 @ 信息写入数据库。经bigfa提醒,如果你不想将 @评论者 写入数据库,可以使用下面的代码:
function ludou_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' , 'ludou_comment_add_at', 20, 2);
教程结束,这里小编采用的是第二种方法,也更有利于减轻数据库的负担。