Remove URL / Website field from WordPress comment form

To remove the “website” field from the WordPress comment form (without hacking it) add the following code to your theme’s function.php file. //Remove comments url field function remove_comment_form_url_field( $field ){ return false; } add_filter( ‘comment_form_field_url’, ‘remove_comment_form_url_field’ );

Change WordPress “from” email address and name

This is short an sweet. By default, WordPress email adress looks like [email protected] If you want to use the site’s real email adress and name just add the code below to your theme’s functions.php file. //Use the admin email for … Continue reading