Skip to content

Instantly share code, notes, and snippets.

@tdtgit
Last active July 26, 2017 15:18
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 tdtgit/92aec02bfea274a3e0fb51d6033e42af to your computer and use it in GitHub Desktop.
Save tdtgit/92aec02bfea274a3e0fb51d6033e42af to your computer and use it in GitHub Desktop.
Disable WordPress comment URL field
// Above code...
function wp_disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields', 'wp_disable_comment_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment