Created
September 12, 2016 09:55
-
-
Save daveloodts/fbf855b9945a16a7892c7191d942df8d to your computer and use it in GitHub Desktop.
remove comments fields in wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* remove comments fields in wordpress */ | |
function disable_comment_url($fields) { | |
unset($fields['url']); | |
return $fields; | |
} | |
add_filter('comment_form_default_fields','disable_comment_url'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment