Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created May 18, 2015 17:50
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/c336725588e59991b109 to your computer and use it in GitHub Desktop.
Save Kaiderella/c336725588e59991b109 to your computer and use it in GitHub Desktop.
Loại bỏ mục Website khỏi khung bình luận WordPress
add_filter('comment_form_default_fields', 'unset_url_field');
function unset_url_field($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