Skip to content

Instantly share code, notes, and snippets.

@Neolot
Created October 27, 2012 11:47
Show Gist options
  • Save Neolot/3964386 to your computer and use it in GitHub Desktop.
Save Neolot/3964386 to your computer and use it in GitHub Desktop.
WORDPRESS Comment author's siteurl fix
function commentdataFix($commentdata) {
if ( $commentdata['comment_author_url'] == 'Site') {
$commentdata['comment_author_url'] = '';
}
return $commentdata;
}
add_filter('preprocess_comment','commentdataFix');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment