Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created April 29, 2020 16:25
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 vfontjr/87b2be79de5d8b6aa7d6dd618a09e8f1 to your computer and use it in GitHub Desktop.
Save vfontjr/87b2be79de5d8b6aa7d6dd618a09e8f1 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'comment_form_default_fields', 'comment_form_fields' );
function comment_form_fields( $fields ) {
unset($fields['url']);
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment