How to remove email id & website box in wordpress comment
You can do by adding few lines of code in functions.php or using Disable Comment plugin. But adding few lines of code would be great. Steps: Go to Editor > Open functions.php file. Scroll down to the end of file and add lines of code given below function comments_custom_settings($fields) { unset($fields[‘url’]); unset($fields[’email’]); return $fields; } … Read more