Remove the Website URL Field from WordPress comment box
A Simple Guide to Remove the Website URL Field from WordPress comment box.
2 reasons why we Remove the website URL Field From WordPress Comment Form
- Due to Bad Spam Links.
- Some Spam Links will Affect our Blog SEO.
Here is the Solution for Remove the website URL Field from WordPress comment box.
Step 1
- Add this Below code to your Theme’s Functions.php File.

add_filter('comment_form_default_fields', 'clear_url_box');
function clear_url_box($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
- If you are Facing Any issue in Above code Means Please Try this Below PHP Code.
function allwebtuts_disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','allwebtuts_disable_comment_url');
- That’s all successfully we Hide the remove the website URL Field from WordPress comment form.
Step 2
Are your Non-technical guy or not Familiar with WordPress & PHP Here is the Site Specific WordPress Plugin For you.
- Just Download this Plugin & Activate it
Download Now
Demo Image

if you Need Any technical Help from us feel free to Comment Here we will Help you.
How to Guide
Was this article helpful?
Thanks!Your feedback helps us improve Allwebtuts.com
Remove the Website URL Field from WordPress comment box
Remove the Website URL Field from WordPress comment box
A Simple Guide to Remove the Website URL Field from WordPress comment box.
2 reasons why we Remove the website URL Field From WordPress Comment Form
Here is the Solution for Remove the website URL Field from WordPress comment box.
Step 1
Step 2
Are your Non-technical guy or not Familiar with WordPress & PHP Here is the Site Specific WordPress Plugin For you.
Download Now
Demo Image
if you Need Any technical Help from us feel free to Comment Here we will Help you.
How to Guide
Your feedback helps us improve Allwebtuts.com
Related Posts
How to Add Ads on Below Post Title and Below Post Content in WordPress
How to Exclude Pages from WordPress Search Results without plugin
How to install Letsencrypt Free SSL Certificate on EasyEngine
About The Author
Santhosh veer
Blogger - Web Developer - Open Source Lover