phpface

Untitled

Feb 2nd, 2021 (edited)
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. /**
  2. * Filter default comment fields
  3. * @param array $fields
  4. */
  5. function videotube_child_filter_comment_fields( $fields ){
  6.     unset( $fields['email'] );
  7.     $fields['url'] = '</div>';
  8.     return $fields;
  9. }
  10. add_filter( 'comment_form_default_fields', 'videotube_child_filter_comment_fields', 10, 1 );
Add Comment
Please, Sign In to add comment