Skip to content

Instantly share code, notes, and snippets.

@daveloodts
Created September 12, 2016 09:55
Show Gist options
  • Save daveloodts/fbf855b9945a16a7892c7191d942df8d to your computer and use it in GitHub Desktop.
Save daveloodts/fbf855b9945a16a7892c7191d942df8d to your computer and use it in GitHub Desktop.
remove comments fields in wordpress
/* remove comments fields in wordpress */
function disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','disable_comment_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment