I have made a wordpress plugin following standard wordpress tutorials. This plugin add a file upload to the comment form by using simply this function:
add_action( 'comment_form_logged_in_after', array(&$this, 'add_to_comment_form') );
. But when I activate some themes it won't show on the comment form.
Any Help how to make it show on comment form?
comments_templaterather thancomment_formto display the form? – mrwweb May 25 '12 at 19:40<?php do_action('comment_form', $post->ID); ?>– albanx May 25 '12 at 20:10