Home >Web Front-end >HTML Tutorial >Remove URL text box in wordpress comment form_html/css_WEB-ITnose
The original effect is as follows
If you want to remove this link form, the generally thought of method is to find the corresponding form code in the comments.php file and delete it. But now it only needs a very simple piece of code to remove it:
Copy the code as follows
add_filter('comment_form_default_fields', 'unset_url_field');
funct(www.111cn.net)ion unset_url_field ($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
Just add the above code to the functions.php file in the theme to delete the website link form
from:http://www.111cn.net/wy/wordpress/68255.htm