Loại bỏ mục website trong khung bình luận WordPress
//* Remove URL field from comments | |
function remove_url_comments($fields) { | |
unset($fields['url']); | |
return $fields; | |
} | |
add_filter('comment_form_default_fields','remove_url_comments'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment