Home / Blogger Guide / How to Remove url option from comments wordpress

How to Remove url option from comments wordpress

You could try adding a filter to your wp-content/themes/your theme name/functions.php
try inserting it in functions.php after the opening php tag: <?php

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

Comments

comments

About Admin

Check Also

How to change main landing page picture of Phpfox v4

Go to: \theme\frontend\default\style\default\image\layout Locate: create-a-community-for-photographers.jpg   (Note: size = 1920 x 1287 ) To change ...

Leave a Reply