Advertisement
fauzanjeg

Remove Website Field

Dec 17th, 2020
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. // This creates a filter to change the default comment fields.
  2. add_filter('comment_form_default_fields', 'my_comment_changes');
  3.  
  4. function my_comment_changes ( $my_fields ) {
  5.     unset( $my_fields['url'] ); // Remove Website Field
  6.    
  7.     return $my_fields; // Return Configuration
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement