Reputation: 5746
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
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