
Originally Posted by
Ryan
There must be a hook down there. The Reply to Comments plugin uses a hook of some sort in the comments section to add an extra checkbox.
"Must" is a bit strong.
The default theme has this immediately after the comments form:
PHP Code:
<?php do_action('comment_form', $post->ID); ?>
Which is handy if:
a) your theme has that (many don't), and
b) you only want to add stuff after the whole comments form.
Short version is that there's no useful hooks around there. Yet.
So, for the time being, editing the theme's comments form manually is the only real way to get stuff done.
That said, 3.0 will have a better way to do this sort of thing. Themes will still need to be modified to use the standard comments form, but once themes are using it, plugins will be able to easily modify them for all sorts of uses.