The comment_form() function is built into WordPress for a standardized form. I can’t find much info on it for manipulating it. I found this, it shows some hooks on customizing the default form. http://ottopress.com/2010/wordpress-3-0-theme-tip-the-comment-form/
All I want to do is remove the ‘Website’ field and make the captions for the ‘Name’ and ‘Email’ fields more friendly. If it cannot be done in version 3.00 is there a way to go back to version 2.9
See http://codex.wordpress.org/Function_Reference/comment_form
Specifically the $args (default fields array) passed to the comment_form function. The TwentyTen theme’s comments.php file provides an example of how you can customise a couple of the default fields.
(@spencer24)
15 years, 9 months ago
I have just upgraded to version 3 but I do not use the default comment form I used to just overwrite the comment.php file in the default theme and all was fine now I have a directory called twentyten running my comments. The next to the last line in the twentyten comments.php is <?php comment_form(); ?> but I can not find it anywhere does anyone know where it is.