Menu Close

Tag: Comments

How to Remove the URL and Email lines in Comment WordPress

Place following code in your functions.php file: function remove_email_url($fields) { unset($fields[‘url’]); unset($fields[’email’]); return $fields; } add_filter(‘comment_form_default_fields’, ‘remove_email_url’); ———————————————————– Another way to remove Website and Email lines…