KarSho
KarSho

Reputation: 5746

Disable URL for Comment Author

In wordpress, where single post or pages we can add Comments. At there I need to avoid/disable the website URL input box.

There is no way in Wp-admin Panel. So How I can Disable that?

Upvotes: 0

Views: 76

Answers (1)

KarSho
KarSho

Reputation: 5746

Answer is Simple. Just add following code in your theme's function.php,

add_filter('comment_form_default_fields', 'url_filtered');
function url_filtered($fields)
{
  if(isset($fields['url']))
   unset($fields['url']);
  return $fields;
}

This code fully disable that URL text input.

Upvotes: 1

Related Questions