Skip to content

Instantly share code, notes, and snippets.

@AntoscencoVladimir
Created February 14, 2016 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AntoscencoVladimir/4f172195b2905d1fd802 to your computer and use it in GitHub Desktop.
Save AntoscencoVladimir/4f172195b2905d1fd802 to your computer and use it in GitHub Desktop.
Disable field in comment form
<?php
function remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields', 'remove_comment_fields');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment