最新消息:本站所有跳转向bbs.ykit.cn的附件将全面停止,附件已转移到https://www.qingsj.com

WordPress回复评论自动添加@评论者

wordpress教程 有客 1052浏览
//WordPress回复评论自动添加@评论者
function mobantu_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' , 'mobantu_comment_add_at', 20);

转载请注明:有客帮 » WordPress回复评论自动添加@评论者