Advertisement
Neolot

WORDPRESS Comment form siteurl fix

Mar 2nd, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function nlt_commentdataFix($commentdata) {
  2.     if ( $commentdata['comment_author_url'] == 'Site') {
  3.         $commentdata['comment_author_url'] = '';
  4.     }
  5.     return $commentdata;
  6. }
  7. add_filter('preprocess_comment','nlt_commentdataFix');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement