Menu Close

Tag: Email

What is Clustered web hosting ?

Clustered hosting is a type of web hosting that spreads the load of hosting across multiple physical machines, or node, increasing availability and decreasing the chances of one service…

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…