Skip to content

Instantly share code, notes, and snippets.

@shizhua
Created August 24, 2015 13:57
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 shizhua/1e284c4793619d163eac to your computer and use it in GitHub Desktop.
Save shizhua/1e284c4793619d163eac to your computer and use it in GitHub Desktop.
Remove URL field from comment form in wordpress
<?php
/**
* Remove URL field from comment form in wordpress
* by Leo
* URL: http://wpsites.org/?p=10448
*/
add_filter('comment_form_default_fields', 'website_remove_url');
function website_remove_url( $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