Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created March 21, 2017 07:41
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 Kaiderella/fb708c69c058322586fc3fcf6cf74436 to your computer and use it in GitHub Desktop.
Save Kaiderella/fb708c69c058322586fc3fcf6cf74436 to your computer and use it in GitHub Desktop.
Loại bỏ mục URL trong form bình luận
function remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','remove_comment_fields');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment