Created
September 25, 2013 20:35
-
-
Save rsharrer/6705647 to your computer and use it in GitHub Desktop.
WP-Functions /Remove unset URL field from 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
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