Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 17, 2013 15:38
Show Gist options
  • Save RhythmShahriar/7027174 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/7027174 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
add_filter('comment_form_default_fields', 'rs_remove_comment_web_url');
function rs_remove_comment_web_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