Skip to content

Instantly share code, notes, and snippets.

@mbrughi
Last active July 6, 2023 14:06
Show Gist options
  • Save mbrughi/19a4682ed07fd78b6424661721628bb0 to your computer and use it in GitHub Desktop.
Save mbrughi/19a4682ed07fd78b6424661721628bb0 to your computer and use it in GitHub Desktop.
Wordpress: Remove URL from comments.
/*
* Remove Comments URL
*
*/
add_filter('comment_form_default_fields', 'mb_remove_comments_url');
function mb_remove_comments_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