Skip to content

Instantly share code, notes, and snippets.

@AnkanSoul
Created April 25, 2018 15:40
Show Gist options
  • Select an option

  • Save AnkanSoul/a8cc801abd86657e00960044451c381d to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/a8cc801abd86657e00960044451c381d to your computer and use it in GitHub Desktop.
comment blog section removed url field
======================= comment blog section removed url field ==============================================
function wpb_disable_comment_url($fields)
{
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','wpb_disable_comment_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment