Skip to content

Instantly share code, notes, and snippets.

@QROkes
Last active February 23, 2016 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QROkes/30ca3b2b2404290a3893 to your computer and use it in GitHub Desktop.
Save QROkes/30ca3b2b2404290a3893 to your computer and use it in GitHub Desktop.
Modify entry comments in WordPress according to the e-mail address.
// Modify entry comments
function qr_admin_author($comment_data){
if ($comment_data['comment_author_email'] == 'mail@domain.com') {
$comment_data['user_ID'] = 1;
$comment_data['comment_author'] = 'Author Name';
$comment_data['comment_author_url'] = 'Author URL';
}
return $comment_data;
}
add_filter('preprocess_comment','qr_admin_author');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment