Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This creates a filter to change the default comment fields.
- add_filter('comment_form_default_fields', 'my_comment_changes');
- function my_comment_changes ( $my_fields ) {
- unset( $my_fields['url'] ); // Remove Website Field
- return $my_fields; // Return Configuration
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement