Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created October 11, 2018 05:02
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 shameemreza/0d273d99e487e34234f3e414beb5fa77 to your computer and use it in GitHub Desktop.
Save shameemreza/0d273d99e487e34234f3e414beb5fa77 to your computer and use it in GitHub Desktop.
add_filter('comment_form_default_fields', 'remove_url');
function remove_url($fields)
{
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment