Hi,
I generate my commentform via the function comment_form (see: http://codex.wordpress.org/Function_Reference/comment_form )
As a result I get something like:
<form action=".../wp-comments-post.php" method="post" id="commentform">
Is there any chance that I can generate the name="" tag so that I get something like:
<form name="comments" action=".../wp-comments-post.php" method="post" id="commentform">
comment_form() allows to input some arguments, such as the id="" of the form but not the name. Anyone has an idea how to manage that?
Regards