Created
August 31, 2013 11:45
-
-
Save epicmonkeez/6397745 to your computer and use it in GitHub Desktop.
Remove the url field from your comment form
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
<?php | |
function em_remove_comment_fields($fields) { | |
unset($fields['url']); | |
return $fields; | |
} | |
add_filter('comment_form_default_fields','em_remove_comment_fields'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment