Quantcast
Channel: Crunchify
Viewing all articles
Browse latest Browse all 1037

How to Remove URL / Website Field from WordPress Comment Form?

$
0
0

no Website - URL field - WordPress Comment - Crunchify.com

Are you a WordPress Developer? Developing WordPress Themes? And wanted to remove URL / Website Field from WordPress Comment Form? Then you are at right place.

Below simple code will help you in this matter.

add_filter('comment_form_default_fields', 'clear_url_box');
function clear_url_box($fields){
    if(isset($fields['url']))
    unset($fields['url']);
    return $fields;
}

Also, let me know which one is your favorite code snippet for any of your custom purpose..

The post How to Remove URL / Website Field from WordPress Comment Form? appeared first on Crunchify.com.


Viewing all articles
Browse latest Browse all 1037

Trending Articles